LiteyukiBot/docs/.vuepress/sidebar/en.ts

32 lines
746 B
TypeScript
Raw Normal View History

import {sidebar} from "vuepress-theme-hope";
2024-03-28 02:50:19 +00:00
2024-08-16 18:24:25 +00:00
export const enSidebarConfig = sidebar({
"/en/": [
"",
{
2024-08-16 18:24:25 +00:00
text: "Install & Deploy",
icon: "laptop-code",
2024-08-16 18:24:25 +00:00
prefix: "deploy/",
children: "structure",
},
{
2024-08-16 18:24:25 +00:00
text: "Usage & Features",
icon: "book",
prefix: "usage/",
children: "structure",
},
{
2024-08-16 18:24:25 +00:00
text: "Resources & Plugins",
icon: "store",
prefix: "store/",
children: "structure",
},
{
2024-08-16 18:24:25 +00:00
text: "Development & Contribution",
icon: "pen-nib",
prefix: "dev/",
children: "structure",
}
],
2024-03-28 02:50:19 +00:00
});