Update src/app/contact/page.tsx

This commit is contained in:
2026-03-27 13:28:27 +00:00
parent fbea1f225f
commit 1a2f17dc60

View File

@@ -7,120 +7,72 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About Us",
id: "/about",
},
{
name: "Collection",
id: "/collection",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="WOW The Luxury Hub"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Collection", id: "/collection" },
{ name: "Contact", id: "/contact" },
]}
brandName="WOW The Luxury Hub"
/>
</div>
<div id="contact-main" data-section="contact-main">
<ContactSplitForm
useInvertedBackground={false}
title="Get In Touch"
description="Visit our boutique at Bahadur Shastri Marg, Mumbai, or reach us at +91 91369 26945."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Your Phone Number",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "How can we help?",
rows: 4,
}}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-professional-horologist-carefully-exam-1774618042878-6b25e756.png?_wi=4"
mediaAnimation="slide-up"
/>
</div>
<div id="contact-main" data-section="contact-main">
<ContactSplitForm
useInvertedBackground={false}
title="Get In Touch"
description="Visit our boutique at Bahadur Shastri Marg, Mumbai, or reach us at +91 91369 26945."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "phone", type: "tel", placeholder: "Your Phone Number", required: true },
]}
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/a-professional-horologist-carefully-exam-1774618042878-6b25e756.png"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Support"
title="Ready to own your piece of time?"
description="Our experts are available to guide you through your purchase."
buttons={[
{
text: "Call Now",
href: "tel:+919136926945",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Support"
title="Ready to own your piece of time?"
description="Our experts are available to guide you through your purchase."
buttons={[
{ text: "Call Now", href: "tel:+919136926945" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/minimalist-luxury-gold-emblem-for-watch--1774618041235-883bda11.png?_wi=4"
columns={[
{
title: "Navigate",
items: [
{
label: "Home",
href: "/",
},
{
label: "Collection",
href: "/collection",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "About Us",
href: "/about",
},
],
},
]}
copyrightText="© 2025 | WOW The Luxury Hub. All Rights Reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWvtEDJxXtpMxZMa2TKz5cVgI4/minimalist-luxury-gold-emblem-for-watch--1774618041235-883bda11.png"
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Collection", href: "/collection" }] },
{ title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "About Us", href: "/about" }] },
]}
copyrightText="© 2025 | WOW The Luxury Hub. All Rights Reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}