mirror of
https://github.com/XTLS/Xray-docs-next.git
synced 2025-01-19 17:21:41 +03:00
19 lines
623 B
TypeScript
19 lines
623 B
TypeScript
import { NavbarConfig } from "@vuepress/theme-default";
|
|
|
|
export const hans: NavbarConfig = [
|
|
{ text: "首页", link: "/" },
|
|
{ text: "大史记", link: "/about/news.md" },
|
|
{ text: "配置指南", link: "/config/" },
|
|
{ text: "开发指南", link: "/development/" },
|
|
{ text: "使用指南", link: "/document/" },
|
|
];
|
|
|
|
// TODO: translation
|
|
export const en: NavbarConfig = [
|
|
{ text: "首页", link: "/en" },
|
|
{ text: "大史记", link: "/en/about/news.md" },
|
|
{ text: "配置指南", link: "/en/config/" },
|
|
{ text: "开发指南", link: "/en/development/" },
|
|
{ text: "使用指南", link: "/en/document/" },
|
|
];
|