-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.ts
More file actions
39 lines (33 loc) · 822 Bytes
/
Copy paththeme.config.ts
File metadata and controls
39 lines (33 loc) · 822 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
import { defineThemeConfig } from 'valaxy-theme-yun'
export default defineThemeConfig({
banner: {
enable: true,
title: 'Yuier 的个人博客',
},
nav: [
{ text: '归档', link: '/archives/', icon: 'i-ri-archive-line' },
{ text: '项目列表', link: '/projects', icon: 'i-ri-gallery-view' },
],
pages: [
{
name: '我的小伙伴们',
url: '/links/',
icon: 'i-ri-genderless-line',
color: 'dodgerblue',
},
],
footer: {
since: 2025,
icon: {
name: 'i-ri-cloud-line',
animated: true,
color: 'var(--va-c-primary)',
url: 'https://github.com/liyuier/liyuier.github.io/blob/master/LICENSE', // copyright info url
title: 'LICENSE',
},
beian: {
enable: true,
icp: '苏ICP备2025165289号',
},
},
})