From bea18b6fbd34dd2808694229e5368c1a6ab978af Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 20:20:44 +0000 Subject: [PATCH] Replace placeholder routes with real pages cgen-71c1ab8111aa4c508834bdb12e28ff9d --- client/App.tsx | 58 ++++++++++---------------------------------------- 1 file changed, 11 insertions(+), 47 deletions(-) diff --git a/client/App.tsx b/client/App.tsx index 54d38b78..afb07bfb 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -27,7 +27,11 @@ import Support from "./pages/Support"; import Status from "./pages/Status"; import Changelog from "./pages/Changelog"; import Profile from "./pages/Profile"; -import Placeholder from "./pages/Placeholder"; +import About from "./pages/About"; +import Contact from "./pages/Contact"; +import GetStarted from "./pages/GetStarted"; +import Privacy from "./pages/Privacy"; +import Terms from "./pages/Terms"; import NotFound from "./pages/NotFound"; const queryClient = new QueryClient(); @@ -69,54 +73,14 @@ const App = () => ( } /> } /> - {/* Placeholder routes for navigation links */} - - } - /> - - } - /> - - } - /> + {/* Informational routes */} + } /> + } /> + } /> {/* Legal routes */} - - } - /> - - } - /> + } /> + } /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } />