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

27 lines
559 B
TypeScript
Raw Normal View History

import { type DefaultTheme } from 'vitepress'
2023-11-30 16:40:04 +08:00
const nav = [
{
text: "大学指南",
link: "/campus/",
2023-11-30 16:40:04 +08:00
},
{
text: "Fashion",
link: "/fashion/",
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
},
] satisfies DefaultTheme.Config['nav'];
export default nav;