📦 hyoban / burogu

📄 site.config.ts · 34 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34const SITE_CONFIG = {
	siteName: "Hyoban's Blog",
	siteLanguage: "zh-Hans",
	description: "Hyoban 的个人博客,胡乱写些东西",
	avatarPath: "/hyoban.png",
	faviconPath: "/favicon.svg",
	links: [
		{
			type: "GitHub",
			url: "https://github.com/hyoban",
		},
		{
			type: "Twitter",
			url: "https://twitter.com/0xhyoban",
		},
		{
			type: "Email",
			url: "mailto:hi@hyoban.cc",
		},
	],
	codeTheme: {
		light: "github-light",
		dark: "github-dark",
	},
	siteUrl: "https://hyoban.cc",
	authorName: "Hyoban",
	authorLink: "https://hyoban.cc",
	authorEmail: "hi@hyoban.cc",
	timeZone: "Asia/Shanghai",
	source: "local",
} as const

export default SITE_CONFIG