Add src/app/cart/page.tsx

This commit is contained in:
2026-03-29 21:57:27 +00:00
parent 1f9670a36e
commit 6af6fc3c2f

28
src/app/cart/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Cart", id: "/cart" }]}
brandName="VELORA"
/>
<ProductCart
isOpen={true}
onClose={() => {}}
items={[]}
total="$0"
buttons={[{ text: "Proceed to Checkout", href: "/checkout" }]}
/>
<FooterSimple columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}