From 1895b5563c1412a8b2f57aa3812f51100879cd53 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:37:50 +0000 Subject: [PATCH 1/4] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index e878364..bc1a615 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -1,27 +1,32 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import ProductCart from '@/components/ecommerce/cart/ProductCart'; export default function CartPage() { return ( - - + +
{}} items={[]} total="$0.00" - buttons={[{ text: "Checkout", href: "#" }]} + buttons={[{ text: "Checkout", href: "/checkout" }]} />
- +
); } \ No newline at end of file -- 2.49.1 From cf62f25a9a206c50910bde1e69941a9a7c83ee5c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:37:51 +0000 Subject: [PATCH 2/4] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index c35da97..ff21423 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -1,33 +1,33 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import React from 'react'; export default function CheckoutPage() { return ( - - + +

Checkout

Complete your purchase by entering your shipping details and payment information below.

- {/* Checkout form logic would go here */}
- +
); } \ No newline at end of file -- 2.49.1 From e68979697029a703626206ca5e67cc78b9d0c255 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:37:51 +0000 Subject: [PATCH 3/4] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 55b64ab..880363d 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -1,20 +1,26 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import React from 'react'; -export default function ProductDetail({ params }: { params: { id: string } }) { +export default function ProductPage() { return ( - - -
-

Product Detail: {params.id}

+ + +
+

Product Details

+
+ -
); } \ No newline at end of file -- 2.49.1 From 1a72e594fbac7c2ffdb940179025710fec398259 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:37:52 +0000 Subject: [PATCH 4/4] Update src/app/profile/page.tsx --- src/app/profile/page.tsx | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index 6a283b7..720e758 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -1,32 +1,33 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import React from 'react'; export default function ProfilePage() { return ( - - + +

My Account

Welcome back! View your order history, manage your profile, and update your preferences here.

- +
); } \ No newline at end of file -- 2.49.1