navLinks.js 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. export const links = [
  2. {
  3. name: "Pigeon Maps",
  4. url: "/pigeon-maps",
  5. sublinks: [
  6. {
  7. name: "Pigeon Maps Test",
  8. url: "/pigeon-maps/test"
  9. }
  10. ]
  11. },
  12. {
  13. name: "Leaflet Map",
  14. url: "/leaflet",
  15. sublinks: [
  16. {
  17. name: "Leaflet Map Test",
  18. url: "/leaflet/test"
  19. }
  20. ]
  21. },
  22. {
  23. name: "Map GL",
  24. url: "/map-gl",
  25. sublinks: [
  26. {
  27. name: "Map GL Test",
  28. url: "/map-gl/test"
  29. }
  30. ]
  31. },
  32. {
  33. name: "Mapbox",
  34. url: "/mapbox",
  35. sublinks: [
  36. {
  37. name: "Mapbox Test",
  38. url: "/mapbox/test"
  39. }
  40. ]
  41. },
  42. {
  43. name: "Google Map",
  44. url: "/google-map",
  45. sublinks: [
  46. {
  47. name: "Google Map Test",
  48. url: "/google-map/test"
  49. }
  50. ]
  51. },
  52. ];