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 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 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 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