From 5ced7f916d94e86e9a7ec164bee56f9a8e3a2a3a Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Mon, 26 May 2025 10:48:43 +0200 Subject: Replace Azure SWA with custom server --- src/Layout.tsx | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/Layout.tsx (limited to 'src/Layout.tsx') diff --git a/src/Layout.tsx b/src/Layout.tsx deleted file mode 100644 index 2a7816c..0000000 --- a/src/Layout.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { ReactNode } from 'react'; -import { Link, useLocation } from 'react-router'; -import { MapPin, Map, Settings } from 'lucide-react'; -import './Layout.css'; - -interface LayoutProps { - children: ReactNode; -} - -export function Layout({ children }: LayoutProps) { - const location = useLocation(); - - const navItems = [ - { - name: 'Paradas', - icon: MapPin, - path: '/stops' - }, - { - name: 'Mapa', - icon: Map, - path: '/map' - }, - { - name: 'Ajustes', - icon: Settings, - path: '/settings' - } - ]; - - return ( -
-
- {children} -
- -
- ); -} \ No newline at end of file -- cgit v1.3