Update src/app/contact/page.tsx

This commit is contained in:
2026-05-13 11:18:53 +00:00
parent 75c983005f
commit 8834f78495

View File

@@ -25,30 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Collections",
id: "/collections",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Custom Orders",
id: "/custom",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Collections", id: "/collections" },
{ name: "Gallery", id: "/gallery" },
{ name: "Custom Orders", id: "/custom" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Help", id: "/help" }
]}
brandName="EverBloom Bridal"
/>
@@ -57,16 +40,9 @@ export default function LandingPage() {
<div id="contact-section" data-section="contact-section">
<ContactText
useInvertedBackground={false}
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
text="Currently serving weddings in Bangalore. Contact us via WhatsApp to start your dream floral journey."
buttons={[
{
text: "Message on WhatsApp",
href: "https://wa.me/919999999999",
},
]}
buttons={[{ text: "Message on WhatsApp", href: "https://wa.me/919999999999" }]}
/>
</div>
@@ -75,74 +51,18 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Get In Touch"
description="We are ready to design your day."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
},
{
name: "email",
type: "email",
placeholder: "Email",
},
]}
inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Email" }]}
imageSrc="http://img.b2bpic.net/free-photo/decorative-flowers-buttonhole_1304-4063.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Collections",
href: "/collections",
},
{
label: "Gallery",
href: "/gallery",
},
],
},
{
items: [
{
label: "Custom Orders",
href: "/custom",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
logoText="EverBloom Bridal"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}