Add src/app/customize/page.tsx

This commit is contained in:
2026-05-28 10:46:59 +00:00
parent 2a06080cd0
commit 141c8cb0ac

View File

@@ -0,0 +1,77 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import ContactSplit from '@/components/sections/contact/ContactSplit';
export default function CustomizePage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmallSizeLargeTitles"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "#home" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Products", id: "#products" },
{ name: "Customize", id: "/customize" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" }
]}
logoSrc="http://img.b2bpic.net/free-photo/blue-grunge-metal-carbon-fibre-texture_1048-10416.jpg"
logoAlt="MetalCard Customs Logo"
brandName="MetalCard Customs"
button={{
text: "Order Now", href: "#products"}}
/>
</div>
<div id="customize-card" data-section="customize-card">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Your Vision, Our Craft"
title="Design Your Unique Metal Card"
description="Use the form below to specify your preferences for material, finish, engraving, and more. Our design team will bring your vision to life."
imageSrc="http://img.b2bpic.net/free-photo/designer-hand-working-with-color-palette_23-2147775586.jpg"
imageAlt="Designer working on a customized metal card layout"
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="Your Email for Design Consultations"
buttonText="Submit Design Request"
termsText="By submitting, you agree to our design consultation terms and privacy policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoSrc="http://img.b2bpic.net/free-photo/blue-grunge-metal-carbon-fibre-texture_1048-10416.jpg"
logoAlt="MetalCard Customs Logo"
logoText="MetalCard Customs"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}