aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-13 12:51:01 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-13 12:51:11 +0100
commitb3b20bc1360ea67de6a1c837bb24c2b55541d3ac (patch)
tree6dd2ca9e5750b490011fad4df94f497a9b32cf3b /src/frontend/app/components
parentc8d7ab720004ab4a10bf6feb98f7cf4ef450c1e0 (diff)
feat: enhance navigation and planner functionality in NavBar and map components
Diffstat (limited to 'src/frontend/app/components')
-rw-r--r--src/frontend/app/components/layout/NavBar.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/frontend/app/components/layout/NavBar.tsx b/src/frontend/app/components/layout/NavBar.tsx
index 5822ce7..e66c388 100644
--- a/src/frontend/app/components/layout/NavBar.tsx
+++ b/src/frontend/app/components/layout/NavBar.tsx
@@ -1,4 +1,4 @@
-import { Home, Map, Route } from "lucide-react";
+import { Home, Map, Navigation, Route } from "lucide-react";
import type { LngLatLike } from "maplibre-gl";
import { useTranslation } from "react-i18next";
import { Link, useLocation, useNavigate } from "react-router";
@@ -53,6 +53,11 @@ export default function NavBar({ orientation = "horizontal" }: NavBarProps) {
},
},
{
+ name: t("navbar.planner", "Planificador"),
+ icon: Navigation,
+ path: "/planner",
+ },
+ {
name: t("navbar.routes", "Rutas"),
icon: Route,
path: "/routes",