Update src/app/page.tsx

This commit is contained in:
2026-05-08 16:52:04 +00:00
parent cfbb9c1094
commit f59bc44af8

View File

@@ -136,12 +136,13 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "What is 3D wedding photography?", content: "It's our signature approach using depth-mapping to make photos feel tactile and alive." },
{ id: "2", title: "Do you travel?", content: "Yes, we travel globally for destination weddings." },
{ id: "3", title: "How long for delivery?", content: "Typically 6-8 weeks for a fully finished gallery." },
{ id: "1", title: "How do we secure our wedding date?", content: "A 30% deposit and signed agreement are required to reserve your date." },
{ id: "2", title: "When will we receive our photos?", content: "Wedding galleries are delivered within 6 to 8 weeks following your big day." },
{ id: "3", title: "Can we request specific shots?", content: "Absolutely. We schedule a pre-wedding consultation to discuss your vision and must-have shots." },
{ id: "4", title: "Do you offer print services?", content: "Yes, we offer premium leather-bound albums, high-end fine art prints, and professional wall art." },
]}
title="Frequently Asked"
description="Common questions about our process."
title="Wedding FAQ"
description="Everything you need to know about booking Lumina 3D."
faqsAnimation="slide-up"
/>
</div>
@@ -149,10 +150,14 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Let's Capture Your Day"
description="Reach out to check our availability."
inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "email", type: "email", placeholder: "Email" }]}
textarea={{ name: "message", placeholder: "Tell us about your day" }}
title="Book Your Consultation"
description="Ready to capture your love story in 3D? Fill out the form to inquire about our availability for your wedding date."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" },
{ name: "date", type: "text", placeholder: "Wedding Date" }
]}
textarea={{ name: "message", placeholder: "Tell us about your wedding vision and location" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tagwxy"
/>
</div>
@@ -161,12 +166,13 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Lumina 3D"
columns={[
{ title: "Navigation", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Pricing", href: "#pricing" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Email", href: "#" }] },
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Portfolio", href: "#portfolio" }, { label: "Pricing", href: "#pricing" }] },
{ title: "Services", items: [{ label: "3D Wedding", href: "#about" }, { label: "Book Now", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}