mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
* update * win10 uninstall * add notes about root * format * modify * update * Update FAQ.md * Update navbar * Update docs * Update Gacha-system-and-export-principal.md * correct * update * disambig * update * add warning for auto-start (need re-update) * update * add a tabular for showing differences in each way for sync * center tabular * switch to md format * update vs * add some * RE-update tabualr * update * correct * update * move web login to the end * Update game-launcher.md * Update docs * Update character-data.md --------- Co-authored-by: LinkChou <linkchou@yandex.com> Co-authored-by: Masterain <i@irain.in>
69 lines
1.4 KiB
TypeScript
69 lines
1.4 KiB
TypeScript
import { navbar } from "vuepress-theme-hope";
|
|
|
|
export const enNavbar = navbar([
|
|
"/en/",
|
|
{
|
|
text: "Document",
|
|
icon: "iconfont icon-article",
|
|
link: "/en/menu",
|
|
},
|
|
{
|
|
text: "Download",
|
|
icon: "iconfont icon-install",
|
|
link: "/en/quick-start",
|
|
},
|
|
{
|
|
text: "Support us",
|
|
icon: "iconfont icon-like",
|
|
link: "/en/support-us",
|
|
},
|
|
{
|
|
text: "Community",
|
|
icon: "iconfont icon-community",
|
|
link: "/en/community",
|
|
},
|
|
{
|
|
text: "Kanban",
|
|
icon: "iconfont icon-update",
|
|
ariaLabel: "ducalis-changelog-widget",
|
|
link: `javascript:void(0);`,
|
|
},
|
|
{
|
|
text: "Help & Support",
|
|
icon: "iconfont icon-define",
|
|
prefix: "/en/",
|
|
children: [
|
|
{
|
|
text: "Update Log",
|
|
icon: "iconfont icon-update",
|
|
link: "statements/update-log",
|
|
},
|
|
{
|
|
text: "Service Availability",
|
|
children: [
|
|
{
|
|
text: "Uptime Kuma",
|
|
icon: "/images/202312/uptime-kuma.svg",
|
|
link: "https://status.snapgenshin.cn/status",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: "Question & Feedback",
|
|
children: [
|
|
{
|
|
text: "FAQ",
|
|
icon: "iconfont icon-ask",
|
|
link: "advanced/FAQ",
|
|
},
|
|
{
|
|
text: "Report Bug",
|
|
icon: "iconfont icon-debug",
|
|
link: "statements/bug-report",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]);
|