diff options
| author | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-03-03 19:13:53 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-03-03 19:13:53 +0100 |
| commit | 4192cc1b5d1e2951963457516de0f9fe668c3b9a (patch) | |
| tree | 78fbbd2da80d31f71feaef80d2ec27520abdc100 /src/Layout.tsx | |
| parent | 3aa6eee0f54dec3e4f92be2ad335a04145ac4db8 (diff) | |
Improve more the UI
Diffstat (limited to 'src/Layout.tsx')
| -rw-r--r-- | src/Layout.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Layout.tsx b/src/Layout.tsx index 5aaafbf..34f5dbf 100644 --- a/src/Layout.tsx +++ b/src/Layout.tsx @@ -9,20 +9,20 @@ interface LayoutProps { export function Layout({ children }: LayoutProps) { const location = useLocation(); - + const navItems = [ { - name: 'Stops', + name: 'Paradas', icon: MapPin, path: '/stops' }, { - name: 'Maps', + name: 'Mapa', icon: Map, path: '/map' }, { - name: 'About', + name: 'Acerca de', icon: Info, path: '/about' } |
