mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
import { sidebar } from "vuepress-theme-hope";
|
|
|
|
export const enSidebar = sidebar({
|
|
"/en/": [
|
|
"",
|
|
"project",
|
|
"i18n",
|
|
"quick-start",
|
|
"support-us",
|
|
{
|
|
icon: "iconfont icon-read",
|
|
text: "Features",
|
|
prefix: "features/",
|
|
children: [
|
|
{
|
|
icon: "iconfont icon-module",
|
|
text: "Game Tools",
|
|
children: [
|
|
"dashboard",
|
|
"game-launcher",
|
|
"wish-export",
|
|
"achievements",
|
|
"real-time-notes",
|
|
"character-data",
|
|
"hutao-API",
|
|
"develop-plan",
|
|
],
|
|
},
|
|
{
|
|
icon: "iconfont icon-study",
|
|
text: "Game WIKI",
|
|
children: ["character-wiki", "weapon-wiki", "monster-wiki"],
|
|
},
|
|
{
|
|
icon: "iconfont icon-setting",
|
|
text: "Snap Hutao Features",
|
|
children: ["feedback-center", "hutao-passport", "hutao-settings"],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
icon: "iconfont icon-advance",
|
|
text: "Advanced",
|
|
prefix: "advanced/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
icon: "iconfont icon-github",
|
|
text: "Open Source Development",
|
|
prefix: "development/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
icon: "iconfont icon-article",
|
|
text: "Statements",
|
|
prefix: "statements/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
icon: "iconfont icon-article",
|
|
text: "Dev Logs",
|
|
prefix: "blog/",
|
|
children: "structure",
|
|
},
|
|
],
|
|
});
|