Add src/app/checkout/page.tsx

This commit is contained in:
2026-03-29 21:57:27 +00:00
parent 6af6fc3c2f
commit b46db37efd

24
src/app/checkout/page.tsx Normal file
View File

@@ -0,0 +1,24 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function CheckoutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Cart", id: "/cart" }]}
brandName="VELORA"
/>
<div className="min-h-[60vh] flex flex-col items-center justify-center p-8">
<h1 className="text-4xl font-bold mb-4">Secure Checkout</h1>
<p>Complete your purchase securely.</p>
</div>
<FooterSimple columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}