From 757ea7041c840ad3882fdad7f2436cedf5b8675e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:06:39 +0000 Subject: [PATCH] Add src/app/cart/page.tsx --- src/app/cart/page.tsx | 111 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 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..b05cc24 --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,111 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { ShoppingCart } from 'lucide-react'; + +export default function CartPage() { + return ( + + + +
+ +
+ +
+
+
+

Your Cart

+
+

Your cart is currently empty.

+ +
+
+
+
+ +
+
+

Order Summary

+
+
+ Subtotal + $0.00 +
+
+ Shipping + $0.00 +
+
+ Tax + $0.00 +
+
+ Total + $0.00 +
+ + +
+
+
+ + +
+ ); +} \ No newline at end of file