diff --git a/client/App.tsx b/client/App.tsx index 9821ec84..88457b7d 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -7,6 +7,8 @@ import { TooltipProvider } from "@/components/ui/tooltip"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { BrowserRouter, Routes, Route } from "react-router-dom"; import Index from "./pages/Index"; +import Onboarding from "./pages/Onboarding"; +import Placeholder from "./pages/Placeholder"; import NotFound from "./pages/NotFound"; const queryClient = new QueryClient(); @@ -19,6 +21,32 @@ const App = () => ( } /> + } /> + + {/* Placeholder routes for navigation links */} + } /> + } /> + } /> + } /> + } /> + + {/* Service routes */} + } /> + } /> + } /> + } /> + } /> + + {/* Resource routes */} + } /> + } /> + } /> + } /> + + {/* Legal routes */} + } /> + } /> + {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } />