en.ts 2.5 KB

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