diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-12 10:24:43 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-12 10:24:54 +0100 |
| commit | 3a1a1e6dc2f6f0abceac5da0cfb530fdb45fc6f5 (patch) | |
| tree | 0b887eece835ff12ebd2eea831483407223e1a22 /src/frontend/app/components/layout/NavBar.tsx | |
| parent | d65ce8288bbda3cb6e0b37613c29d7bf52703ba7 (diff) | |
Initial ultra-ñapa implementation of OTP integration
Diffstat (limited to 'src/frontend/app/components/layout/NavBar.tsx')
| -rw-r--r-- | src/frontend/app/components/layout/NavBar.tsx | 7 |
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 40591c4..150755f 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, Navigation2, Route } from "lucide-react"; import type { LngLatLike } from "maplibre-gl"; import { useTranslation } from "react-i18next"; import { Link, useLocation } from "react-router"; @@ -71,6 +71,11 @@ export default function NavBar({ orientation = "horizontal" }: NavBarProps) { icon: Route, path: "/lines", }, + { + name: t("navbar.planner", "Planificador"), + icon: Navigation2, + path: "/planner", + }, ]; return ( |
