123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import type { NavbarOptions } from "@vuepress/theme-default";
- export const navbarEn: NavbarOptions = [
- {
- text: "Documentation",
- children: [
- "/docs/README.md",
- {
- text: "Routes",
- link: "/docs/routes/README.md",
- },
- ],
- },
- {
- text: "Try It",
- link: "/docs/manual-search.md",
- },
- {
- text: "GitHub",
- link: "https://github.com/Sv443/geniURL",
- },
- {
- text: "Discord",
- link: "https://dc.sv443.net",
- },
- /*{
- text: 'Routes',
- children: [
- {
- text: 'Core',
- children: [
- {
- text: 'CLI',
- link: '/reference/cli.html',
- },
- '/reference/config.md',
- '/reference/frontmatter.md',
- '/reference/components.md',
- '/reference/plugin-api.md',
- '/reference/theme-api.md',
- '/reference/client-api.md',
- '/reference/node-api.md',
- ],
- },
- {
- text: 'Bundlers',
- children: [
- '/reference/bundler/vite.md',
- '/reference/bundler/webpack.md',
- ],
- },
- {
- text: 'Ecosystem',
- children: [
- {
- text: 'Default Theme',
- link: 'https://ecosystem.vuejs.press/themes/default/',
- },
- {
- text: 'Plugins',
- link: 'https://ecosystem.vuejs.press/plugins/',
- },
- ],
- },
- ],
- },
- {
- text: 'Learn More',
- children: [
- {
- text: 'Advanced',
- children: [
- '/advanced/architecture.md',
- '/advanced/plugin.md',
- '/advanced/theme.md',
- {
- text: 'Cookbook',
- link: '/advanced/cookbook/',
- },
- ],
- },
- {
- text: 'Resources',
- children: [
- {
- text: 'Ecosystem',
- link: 'https://ecosystem.vuejs.press/',
- },
- {
- text: 'MarketPlace',
- link: 'https://marketplace.vuejs.press',
- },
- {
- text: 'Contributing Guide',
- link: 'https://github.com/vuepress/core/blob/main/CONTRIBUTING.md',
- },
- ],
- },
- ],
- },
- {
- text: `v${VERSION}`,
- children: [
- {
- text: 'Changelog',
- link: 'https://github.com/vuepress/core/blob/main/CHANGELOG.md',
- },
- {
- text: 'v1.x',
- link: 'https://v1.vuepress.vuejs.org',
- },
- {
- text: 'v0.x',
- link: 'https://v0.vuepress.vuejs.org',
- },
- ],
- },*/
- // TODO: remove the type assertion
- ] as NavbarOptions;
|