mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
import { navbar } from "vuepress-theme-hope";
|
|
|
|
export const zhNavbar = navbar([
|
|
"/zh/",
|
|
{ text: "文档", icon: "iconfont icon-article", link: "/zh/menu.html" },
|
|
{
|
|
text: "下载",
|
|
icon: "iconfont icon-install",
|
|
link: "/zh/quick-start.html",
|
|
},
|
|
{
|
|
text: "加入社区",
|
|
icon: "iconfont icon-community",
|
|
link: "/zh/community",
|
|
},
|
|
{
|
|
text: "帮助与支持",
|
|
icon: "iconfont icon-define",
|
|
children: [
|
|
{
|
|
text: "更新日志",
|
|
icon: "iconfont icon-update",
|
|
link: "/zh/statements/update-log.html"
|
|
},
|
|
{
|
|
text: "服务可用性",
|
|
children: [
|
|
{
|
|
text: "UptimeRobot",
|
|
icon: "/images/202312/uptimerobot-logo.svg",
|
|
link: "https://status.hut.ao/",
|
|
},
|
|
{
|
|
text: "Uptime Kuma",
|
|
icon: "/images/202312/uptime-kuma.svg",
|
|
link: "https://status.snapgenshin.cn/status",
|
|
}
|
|
]
|
|
},
|
|
{
|
|
text: "问题与反馈",
|
|
children:[
|
|
{
|
|
text: "常见问题",
|
|
icon: "iconfont icon-ask",
|
|
link: "/zh/advanced/FAQ.html"
|
|
},
|
|
{
|
|
text: "反馈问题",
|
|
icon: "iconfont icon-debug",
|
|
link: "/zh/statements/bug-report.html"
|
|
},
|
|
|
|
]
|
|
}
|
|
]
|
|
},
|
|
]);
|