From 0ae4f3e61fa9e379f05a98846718f8b26d518899 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 5 Aug 2025 22:51:28 +0000 Subject: [PATCH] Update routing to include onboarding and placeholder pages cgen-3c61505ead3449a6b9d3f98d7bcf78ea --- client/App.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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 */} } />