import type { ThemeConfig } from '~/types' // This is the default configuration for the template, please do not modify it directly. // You can override this configuration in the `.config/user.ts` file. export const defaultConfig: ThemeConfig = { site: { title: '活版印字', subtitle: 'Typography', author: 'Moeyua', description: 'Rediscory the beauty of typography', website: 'https://astro-theme-typography.vercel.app/', pageSize: 5, socialLinks: [ { name: 'github', href: 'https://github.com/moeyua/astro-theme-typography', }, { name: 'rss', href: '/atom.xml', }, { name: 'twitter', href: 'https://github.com/moeyua/astro-theme-typography', }, { name: 'mastodon', href: 'https://github.com/moeyua/astro-theme-typography', }, ], navLinks: [ { name: 'Posts', href: '/', }, { name: 'Archive', href: '/archive', }, { name: 'Categories', href: '/categories', }, { name: 'About', href: '/about', }, ], categoryMap: [{ name: '胡适', path: 'hu-shi' }], footer: [ '© %year %author', 'Theme Typography by Moeyua', 'Proudly published with Astro', ], }, appearance: { theme: 'system', locale: 'zh-cn', colorsLight: { primary: '#2e405b', background: '#ffffff', }, colorsDark: { primary: '#FFFFFF', background: '#232222', }, fonts: { header: '"HiraMinProN-W6","Source Han Serif CN","Source Han Serif SC","Source Han Serif TC",serif', ui: '"Source Sans Pro","Roboto","Helvetica","Helvetica Neue","Source Han Sans SC","Source Han Sans TC","PingFang SC","PingFang HK","PingFang TC",sans-serif', }, }, seo: { twitter: '@moeyua13', meta: [], link: [], }, rss: { fullText: true, }, comment: { // disqus: { shortname: "typography-astro" }, }, analytics: { googleAnalyticsId: '', umamiAnalyticsId: '', }, latex: { katex: false, }, }