Add src/app/cart/page.tsx
This commit is contained in:
26
src/app/cart/page.tsx
Normal file
26
src/app/cart/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user