Add src/app/cart/page.tsx

This commit is contained in:
2026-05-11 14:32:40 +00:00
parent 8b07521d80
commit 373c3975d0

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

@@ -0,0 +1,26 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function CartPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Cart", id: "/cart" },
]}
brandName="Grey Specialty Coffee"
/>
<div className="pt-32 pb-20 container mx-auto text-center">
<h1 className="text-4xl font-bold mb-6">Your Cart</h1>
<p>Your cart is empty.</p>
</div>
</ReactLenis>
</ThemeProvider>
);
}