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