-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.config.js
More file actions
50 lines (48 loc) · 990 Bytes
/
site.config.js
File metadata and controls
50 lines (48 loc) · 990 Bytes
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
// 站点配置文件
// 修改此文件来更新网站信息
export const siteConfig = {
head: {
title: 'Riordon的个人网站',
description: 'Author:Riordon,Category:Personal Blog',
favicon: '/favicon.ico'
},
intro: {
title: 'Riordon',
subtitle: '心之所向,素履以往',
enter: 'enter',
supportAuthor: true,
background: true
},
main: {
name: 'Riordon',
signature: 'Go where your heart leads.',
avatar: {
link: '/avatar.jpg',
height: '100',
width: '100'
},
links: [
{
href: '/blog/',
icon: 'bokeyuan',
text: '博客'
},
{
href: '/about/',
icon: 'xiaolian',
text: '关于'
},
{
href: 'mailto:admin@riordon.xyz',
icon: 'email',
text: '邮箱'
},
{
href: 'https://github.com/Riordon666',
icon: 'github',
text: 'Github'
}
]
}
}
export default siteConfig