en.ts 493 B

1234567891011121314151617181920212223242526
  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/try-it.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. ] satisfies NavbarOptions;