-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsite.config.ts
106 lines (101 loc) · 2 KB
/
site.config.ts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
export const siteConfig = {
author: 'Rock Chen',
title: 'Rock Chen - Blog',
description: 'My blog site.',
lang: 'zh-CN',
}
export const subNavLinks = [
{
title: 'Blog',
path: '/blog',
},
{
title: 'Life',
path: '/life',
},
{
title: 'Record',
path: '/record',
},
]
export const navLinks = [
{
title: 'Blog',
path: '/blog',
icon: 'i-icon-park-outline-align-text-right-one',
},
{
title: 'Projects',
path: '/projects',
icon: 'i-icon-park-outline-blocks-and-arrows',
},
{
title: 'Tags',
path: '/tags',
icon: 'i-icon-park-outline-tag-one',
},
{
title: 'Search',
path: '/search',
icon: 'i-icon-park-outline-search',
},
{
title: 'About',
path: '/',
icon: 'i-icon-park-outline-grinning-face-with-open-mouth',
},
]
export const socialLinks = [
{
title: '掘金',
path: 'https://juejin.cn/user/3826745248595550',
icon: 'i-simple-icons-juejin',
},
{
title: 'Bilibili',
path: 'https://space.bilibili.com/3850132',
icon: 'i-simple-icons-bilibili',
},
{
title: 'Twitter',
path: 'https://twitter.com/Rockchen97',
icon: 'i-simple-icons-twitter',
},
{
title: 'Github',
path: 'https://github.com/chansee97',
icon: 'i-icon-park-outline-github',
},
]
export const projectList = [
{
name: 'Projects',
content: [
{
name: 'Nuxt Blog',
desc: 'My blog site, base on Nuxt',
path: 'https://github.com/chansee97/nuxt-blog',
},
{
name: 'Nova Admin',
desc: 'a complete admin template',
path: 'https://github.com/chansee97/nova-admin',
},
{
name: 'Nova Admin Nest',
desc: 'The nest backend for nova admin',
path: 'https://github.com/chansee97/nove-admin-nest',
},
],
},
{
name: 'Starter',
content: [
{
name: 'Virtuoso',
desc: 'My simply vue starter',
path: 'https://github.com/chansee97/virtuoso',
},
],
},
]