diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 54557a8..93158e1 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -5,14 +5,29 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp export default function CartPage() { return ( - - + +

Your Shopping Cart

Your cart is currently empty.

diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index e0ca46d..b0396ef 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -5,14 +5,29 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp export default function CheckoutPage() { return ( - - + +

Checkout

Complete your purchase details here.

diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 1882a93..21cac44 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -2,31 +2,53 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ShopPage() { return ( - - -
- + +
+
+ +
- + ); } \ No newline at end of file