From 6af6fc3c2f86080a1cfce9e1b98db4b18ca45aab Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 21:57:27 +0000 Subject: [PATCH] Add src/app/cart/page.tsx --- src/app/cart/page.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/app/cart/page.tsx diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx new file mode 100644 index 0000000..7f5d788 --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCart from '@/components/ecommerce/cart/ProductCart'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function CartPage() { + return ( + + + + {}} + items={[]} + total="$0" + buttons={[{ text: "Proceed to Checkout", href: "/checkout" }]} + /> + + + + ); +} \ No newline at end of file