en.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. import type { NavbarOptions } from "@vuepress/theme-default";
  2. export const navbarEn: NavbarOptions = [
  3. {
  4. text: "Documentation",
  5. children: [
  6. "/docs/README.md",
  7. {
  8. text: "Routes",
  9. link: "/docs/routes/README.md",
  10. },
  11. ],
  12. },
  13. {
  14. text: "Try It",
  15. link: "/docs/manual-search.md",
  16. },
  17. {
  18. text: "GitHub",
  19. link: "https://github.com/Sv443/geniURL",
  20. },
  21. {
  22. text: "Discord",
  23. link: "https://dc.sv443.net",
  24. },
  25. /*{
  26. text: 'Routes',
  27. children: [
  28. {
  29. text: 'Core',
  30. children: [
  31. {
  32. text: 'CLI',
  33. link: '/reference/cli.html',
  34. },
  35. '/reference/config.md',
  36. '/reference/frontmatter.md',
  37. '/reference/components.md',
  38. '/reference/plugin-api.md',
  39. '/reference/theme-api.md',
  40. '/reference/client-api.md',
  41. '/reference/node-api.md',
  42. ],
  43. },
  44. {
  45. text: 'Bundlers',
  46. children: [
  47. '/reference/bundler/vite.md',
  48. '/reference/bundler/webpack.md',
  49. ],
  50. },
  51. {
  52. text: 'Ecosystem',
  53. children: [
  54. {
  55. text: 'Default Theme',
  56. link: 'https://ecosystem.vuejs.press/themes/default/',
  57. },
  58. {
  59. text: 'Plugins',
  60. link: 'https://ecosystem.vuejs.press/plugins/',
  61. },
  62. ],
  63. },
  64. ],
  65. },
  66. {
  67. text: 'Learn More',
  68. children: [
  69. {
  70. text: 'Advanced',
  71. children: [
  72. '/advanced/architecture.md',
  73. '/advanced/plugin.md',
  74. '/advanced/theme.md',
  75. {
  76. text: 'Cookbook',
  77. link: '/advanced/cookbook/',
  78. },
  79. ],
  80. },
  81. {
  82. text: 'Resources',
  83. children: [
  84. {
  85. text: 'Ecosystem',
  86. link: 'https://ecosystem.vuejs.press/',
  87. },
  88. {
  89. text: 'MarketPlace',
  90. link: 'https://marketplace.vuejs.press',
  91. },
  92. {
  93. text: 'Contributing Guide',
  94. link: 'https://github.com/vuepress/core/blob/main/CONTRIBUTING.md',
  95. },
  96. ],
  97. },
  98. ],
  99. },
  100. {
  101. text: `v${VERSION}`,
  102. children: [
  103. {
  104. text: 'Changelog',
  105. link: 'https://github.com/vuepress/core/blob/main/CHANGELOG.md',
  106. },
  107. {
  108. text: 'v1.x',
  109. link: 'https://v1.vuepress.vuejs.org',
  110. },
  111. {
  112. text: 'v0.x',
  113. link: 'https://v0.vuepress.vuejs.org',
  114. },
  115. ],
  116. },*/
  117. // TODO: remove the type assertion
  118. ] as NavbarOptions;