Add src/app/checkout/page.tsx

This commit is contained in:
2026-06-12 12:50:36 +00:00
parent f3b55e5e0f
commit 4b96b71b91

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

@@ -0,0 +1,72 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function CheckoutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "#products" },
{ name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "Cart", id: "/cart" },
{ name: "Checkout", id: "/checkout" },
]}
logoSrc="http://img.b2bpic.net/free-photo/tokyo-creative-collage_23-2149455371.jpg"
logoAlt="Catchy Kicks Logo"
brandName="Catchy Kicks"
bottomLeftText="Tunisia's Top Sneaker Store"
bottomRightText="support@catchykicks.tn"
button={{ text: "Shop Now", href: "#products" }}
/>
</div>
<main className="container mx-auto py-16 px-4 text-center min-h-[60vh] flex flex-col justify-center items-center">
<h1 className="text-5xl font-bold mb-6">Checkout</h1>
<p className="text-lg max-w-2xl mb-8">
Please proceed with your order. Here you would typically find fields for shipping information,
payment details (including local Tunisian methods like credit/debit cards and bank transfers),
and a summary of your cart.
</p>
<a href="/order-confirmation" className="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 h-10 px-4 py-2 bg-primary-cta text-primary-cta-foreground hover:bg-primary-cta/90">
Pay Now (Placeholder)
</a>
</main>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Explore", items: [{ label: "Home", href: "/" }, { label: "Products", href: "#products" }, { label: "Features", href: "#features" }, { label: "About Us", href: "#about" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }, { label: "Shipping & Returns", href: "#" }, { label: "Privacy Policy", href: "#" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "https://instagram.com/catchy_99" }, { label: "TikTok", href: "https://tiktok.com/@catchy99store" }, { label: "Facebook", href: "https://facebook.com/catchy99" }] },
]}
logoSrc="http://img.b2bpic.net/free-photo/tokyo-creative-collage_23-2149455371.jpg"
logoAlt="Catchy Kicks Logo"
logoText="Catchy Kicks"
copyrightText="© 2024 Catchy Kicks. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}