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