raincraft-server-homepage/docs/.vuepress/navbar.ts
ギリ猫 5535ed7c52
Some checks failed
deploy to pages / docs (push) Has been cancelled
deploy to upyun / docs (push) Has been cancelled
Update navbar.ts
修改:服务器状态URL
2025-07-27 00:06:55 +08:00

39 lines
1.3 KiB
TypeScript

import { defineNavbarConfig } from 'vuepress-theme-plume'
export const zhNavbar = defineNavbarConfig([
{ text: '首页', icon: 'icon-park-outline:home' , link: '/' },
{ text: '博客', icon: 'icon-park-outline:thinking-problem' , link: '/blog/' },
{ text: '投喂', icon: 'icon-park-outline:cup' , link: '/docs/donate/' },
{
text: '文档',
icon: 'icon-park-outline:document-folder',
items: [
{ text: '开始', link: '/docs/get-start/' },
{ text: '社区', link: '/docs/community/' },
]
},
{
text: '更多',
icon: 'icon-park-outline:more-two',
items: [
{ text: '皮肤站', link: 'https://skin.ineko.cc' },
{ text: '论坛', link: 'https://bbs.mc.ineko.cc' },
{ text: '联合封禁系统', link: 'https://uni-ban.mc.ineko.cc' },
{ text: '服务器状态', link: 'https://status.ineko.cc/status/raincraft' }
]
},
])
export const enNavbar = defineNavbarConfig([
{ text: 'Home', icon: 'icon-park-outline:home' , link: '/en/' },
{
text: 'More',
icon: 'icon-park-outline:more-two',
items: [
{ text: 'BBS', link: 'https://bbs.mc.ineko.cc' },
{ text: 'Union Ban System', link: 'https://uni-ban.mc.ineko.cc' },
{ text: 'Server Stats', link: 'https://stat.mc.ineko.cc' }
]
},
])