-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.ts
101 lines (96 loc) · 2.02 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
export const siteConfig = {
author: 'Swag Liu',
title: 'Swag Liu - 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/3773179639375432',
icon: 'i-simple-icons-juejin',
},
{
title: 'Bilibili',
path: 'https://space.bilibili.com/231742179',
icon: 'i-simple-icons-bilibili',
},
{
title: 'Twitter',
path: 'https://twitter.com/ljt990218siu7',
icon: 'i-simple-icons-twitter',
},
{
title: 'Github',
path: 'https://github.com/ljt990218',
icon: 'i-icon-park-outline-github',
},
]
export const projectList = [
{
name: 'Projects',
content: [
{
name: 'vue3-todolist',
desc: 'vue3-todolist.',
path: 'https://github.com/ljt990218/vue3-todolist',
},
{
name: 'todolist-nest',
desc: 'todolist-nest.',
path: 'https://github.com/ljt990218/todolist-nest',
},
{
name: 'vue3-vant-mobile',
desc: 'An mobile web apps template based on the Vue 3 ecosystem.',
path: 'https://github.com/easy-temps/vue3-vant-mobile',
},
{
name: 'vue3-varlet-mobile',
desc: 'An mobile web apps template based on the Vue 3 ecosystem.',
path: 'https://github.com/easy-temps/vue3-varlet-mobile',
}
],
}
]