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