import { Navigate, Route, Routes } from "react-router-dom"; import { AuthProvider } from "./context/AuthContext"; import { Layout } from "./components/Layout"; import { RequireAuth } from "./components/RequireAuth"; import { Login } from "./pages/Login"; import { Dashboard } from "./pages/Dashboard"; import { Vehicles } from "./pages/Vehicles"; import { VehicleDetail } from "./pages/VehicleDetail"; import { Bookings } from "./pages/Bookings"; import { BookingDetail } from "./pages/BookingDetail"; import { Audit } from "./pages/Audit"; export function App() { return ( } /> } > } /> } /> } /> } /> } /> } /> } /> } /> ); }