RLE-wiki/docs/.vitepress/nav.ts

38 lines
683 B
TypeScript
Raw Normal View History

import { type DefaultTheme } from 'vitepress';
2023-11-30 16:40:04 +08:00
type NavConfig = DefaultTheme.Config['nav']
const nav: NavConfig = [
{
text: '大学指南',
link: '/campus/',
2023-11-30 16:40:04 +08:00
},
{
text: 'Fashion',
link: '/fashion/',
2023-11-30 16:40:04 +08:00
},
{
text: '防护',
link: '/personal-safety/',
},
2023-11-30 16:40:04 +08:00
{
text: '贡献指南',
items: [
{
text: '校园版块投稿指南',
link: '/contributor-guide/campus.md',
},
{
text: '其他投稿指南',
link: '/contributor-guide/other.md',
},
{
text: '校园版块贡献模板',
link: '/contributor-guide/CampusTemplate.md',
},
],
2023-11-30 16:40:04 +08:00
},
];
export default nav;