From a8f9e54554ec52825f4b6b5379fdc93a4c5ecadb Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:09:28 +0000 Subject: [PATCH] Seed: ecommerce template (24 files) --- src/App.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..769a777 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,31 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import { CartProvider } from "@/lib/cart-context"; +import IndexPage from "@/pages/Index"; +import ProductsPage from "@/pages/Products"; +import ProductDetailPage from "@/pages/ProductDetail"; +import CartPage from "@/pages/Cart"; +import CheckoutPage from "@/pages/Checkout"; +import AccountPage from "@/pages/Account"; +import SearchPage from "@/pages/Search"; +import OrderConfirmationPage from "@/pages/OrderConfirmation"; + +function App() { + return ( + + + + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + + ); +} + +export default App;