This commit is contained in:
gpt-engineer-app[bot]
2025-12-18 17:15:45 +00:00
parent 6a69232261
commit de98ccfc49
6 changed files with 1009 additions and 496 deletions

View File

@@ -12,6 +12,7 @@ import ProductDetail from "./pages/ProductDetail";
import Checkout from "./pages/Checkout";
import Dashboard from "./pages/Dashboard";
import Admin from "./pages/Admin";
import Bootcamp from "./pages/Bootcamp";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -32,6 +33,7 @@ const App = () => (
<Route path="/checkout" element={<Checkout />} />
<Route path="/dashboard" element={<Dashboard />} />
<Route path="/admin" element={<Admin />} />
<Route path="/bootcamp/:slug" element={<Bootcamp />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>