chore: update deps (#108)

* chore: update deps

* style: update linter

* fix: fix catalog

* chore: tweaks navbar config
This commit is contained in:
Mr.Hope
2024-02-22 16:16:02 +08:00
committed by GitHub
parent 0e69da99c5
commit 7ac010e072
66 changed files with 1800 additions and 2140 deletions

View File

@@ -2,11 +2,15 @@ import { navbar } from "vuepress-theme-hope";
export const enNavbar = navbar([
"/en/",
{ text: "Document", icon: "iconfont icon-article", link: "/en/menu.html" },
{
text: "Document",
icon: "iconfont icon-article",
link: "/en/menu",
},
{
text: "Download",
icon: "iconfont icon-install",
link: "/en/quick-start.html",
link: "/en/quick-start",
},
{
text: "Community",
@@ -16,11 +20,12 @@ export const enNavbar = navbar([
{
text: "Help & Support",
icon: "iconfont icon-define",
prefix: "/en/",
children: [
{
text: "Update Log",
icon: "iconfont icon-update",
link: "/en/statements/update-log.html"
link: "statements/update-log",
},
{
text: "Service Availability",
@@ -34,25 +39,24 @@ export const enNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
}
]
},
],
},
{
text: "Question & Feedback",
children:[
children: [
{
text: "FAQ",
icon: "iconfont icon-ask",
link: "/en/advanced/FAQ.html"
link: "advanced/FAQ",
},
{
text: "Report Bug",
icon: "iconfont icon-debug",
link: "/en/statements/bug-report.html"
link: "statements/bug-report",
},
]
}
]
],
},
],
},
]);

View File

@@ -2,7 +2,11 @@ import { navbar } from "vuepress-theme-hope";
export const idNavbar = navbar([
"/id/",
{ text: "Document", icon: "iconfont icon-article", link: "/id/menu.html" },
{
text: "Document",
icon: "iconfont icon-article",
link: "/id/menu",
},
{
text: "Unduh",
icon: "iconfont icon-install",
@@ -26,7 +30,7 @@ export const idNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
}
]
},
],
},
]);

View File

@@ -1,4 +1,4 @@
export * from "./en.js";
export * from "./zh.js";
export * from "./ru.js";
export * from "./id.js";
export * from "./id.js";

View File

@@ -2,7 +2,11 @@ import { navbar } from "vuepress-theme-hope";
export const ruNavbar = navbar([
"/ru/",
{ text: "Документация", icon: "iconfont icon-article", link: "/ru/menu.html" },
{
text: "Документация",
icon: "iconfont icon-article",
link: "/ru/menu",
},
{
text: "Скачать",
icon: "iconfont icon-install",
@@ -26,7 +30,7 @@ export const ruNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
}
]
},
],
},
]);

View File

@@ -2,11 +2,15 @@ import { navbar } from "vuepress-theme-hope";
export const zhNavbar = navbar([
"/zh/",
{ text: "文档", icon: "iconfont icon-article", link: "/zh/menu.html" },
{
text: "文档",
icon: "iconfont icon-article",
link: "/zh/menu",
},
{
text: "下载",
icon: "iconfont icon-install",
link: "/zh/quick-start.html",
link: "/zh/quick-start",
},
{
text: "加入社区",
@@ -16,11 +20,12 @@ export const zhNavbar = navbar([
{
text: "帮助与支持",
icon: "iconfont icon-define",
prefix: "/zh/",
children: [
{
text: "更新日志",
icon: "iconfont icon-update",
link: "/zh/statements/update-log.html"
link: "statements/update-log",
},
{
text: "服务可用性",
@@ -34,25 +39,24 @@ export const zhNavbar = navbar([
text: "Uptime Kuma",
icon: "/images/202312/uptime-kuma.svg",
link: "https://status.snapgenshin.cn/status",
}
]
},
],
},
{
text: "问题与反馈",
children:[
children: [
{
text: "常见问题",
icon: "iconfont icon-ask",
link: "/zh/advanced/FAQ.html"
link: "advanced/FAQ.html",
},
{
text: "反馈问题",
icon: "iconfont icon-debug",
link: "/zh/statements/bug-report.html"
link: "statements/bug-report.html",
},
]
}
]
],
},
],
},
]);