This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 23:15:47 +00:00
parent c30a081f49
commit 1bbf4698fb
5 changed files with 74 additions and 33 deletions
+2
View File
@@ -8,6 +8,7 @@ import NotFound from "./pages/NotFound";
import ResetPassword from "./pages/ResetPassword";
import Profile from "./pages/Profile";
import Account from "./pages/Account";
import AccountConfirmation from "./pages/AccountConfirmation";
import { useCartSync } from "./hooks/useCartSync";
const queryClient = new QueryClient();
@@ -22,6 +23,7 @@ function AppContent() {
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/profile" element={<Profile />} />
<Route path="/account" element={<Account />} />
<Route path="/account/confirmation" element={<AccountConfirmation />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>