diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx new file mode 100644 index 0000000..54557a8 --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,22 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function CartPage() { + return ( + + +
+

Your Shopping Cart

+

Your cart is currently empty.

+
+
+ ); +} \ No newline at end of file diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..e0ca46d --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,22 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function CheckoutPage() { + return ( + + +
+

Checkout

+

Complete your purchase details here.

+
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 834dd1c..8203ff1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -230,4 +230,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..1882a93 --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ShopPage() { + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file