From 87f0446c39a23f49f94c0f1bf743589d76ee5890 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 19:52:08 +0000 Subject: [PATCH] Add src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 96 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 src/app/checkout/page.tsx diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..73575dd --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,96 @@ +'use client'; +import { ThemeProvider } from 'next-themes'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import TextBox from '@/components/Textbox'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function CheckoutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Cart", id: "/cart" }, + { name: "Checkout", id: "/checkout" }, + { name: "Order Conf", id: "/order-confirmation" } + ]; + + return ( + + +
+
+ +
+

Shipping Information

+
+ + + + + + + +
+ +

Payment Information

+
+ + + + +
+
+
+
+ +
+ +
+
+ +
+ ); +}