This commit is contained in:
gpt-engineer-app[bot]
2026-01-28 12:40:29 +00:00
parent 24d23a6981
commit 0e160c488d
3 changed files with 72 additions and 0 deletions
+2
View File
@@ -11,6 +11,7 @@ import Account from "./pages/Account";
import AccountConfirmation from "./pages/AccountConfirmation";
import Contact from "./pages/Contact";
import Admin from "./pages/Admin";
import FAQ from "./pages/FAQ";
import { useCartSync } from "./hooks/useCartSync";
const queryClient = new QueryClient();
@@ -23,6 +24,7 @@ function AppContent() {
<Routes>
<Route path="/" element={<Index />} />
<Route path="/contact" element={<Contact />} />
<Route path="/faq" element={<FAQ />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/profile" element={<Profile />} />
<Route path="/account" element={<Account />} />