-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
theme.config.ts
77 lines (71 loc) · 1.39 KB
/
theme.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
import { defineThemeConfig } from 'valaxy-theme-yun'
export default defineThemeConfig({
// type: 'strato',
type: 'nimbo',
// colors: {
// primary: 'red',
// },
// bg_image: {},
banner: {
enable: true,
title: '云游君的小站',
},
notice: {
enable: true,
content: '公告测试',
},
nav: [
{
text: '导航',
link: '/projects',
items: [
{ text: '项目列表', link: '/projects' },
{ text: '友情链接', link: '/links' },
{ text: '老婆列表', link: '/girls' },
{ text: '赞助者', link: 'https://sponsors.yunyoujun.cn' },
],
},
],
pages: [
{
name: '项目列表',
url: '/projects',
icon: 'i-ri-gallery-view',
color: 'var(--va-c-text)',
},
{
name: '相册',
url: '/albums',
icon: 'i-ri-image-line',
color: 'var(--va-c-text)',
},
{
name: '友情链接',
url: '/links/',
icon: 'i-ri-link',
// color: 'dodgerblue',
},
{
name: '老婆列表',
url: '/girls/',
icon: 'i-ri-women-line',
// color: 'hotpink',
},
{
name: '赞助者们',
url: '/sponsors/',
icon: 'i-ri-heart-line',
color: 'red',
},
],
footer: {
since: 2016,
beian: {
enable: true,
icp: '苏ICP备17038157号',
},
icon: {
animated: true,
},
},
})