This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 23:08:46 +00:00
parent 58b6ebb21c
commit 6a4a1f9b96
4 changed files with 336 additions and 45 deletions
+2
View File
@@ -7,6 +7,7 @@ import Index from "./pages/Index";
import NotFound from "./pages/NotFound";
import ResetPassword from "./pages/ResetPassword";
import Profile from "./pages/Profile";
import Account from "./pages/Account";
import { useCartSync } from "./hooks/useCartSync";
const queryClient = new QueryClient();
@@ -20,6 +21,7 @@ function AppContent() {
<Route path="/" element={<Index />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/profile" element={<Profile />} />
<Route path="/account" element={<Account />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>