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 */} } />