This commit is contained in:
2026-01-16 11:34:43 +02:00
parent 564231692c
commit e1db8347e0

View File

@@ -8,7 +8,6 @@ import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { CheckCircle, Flower2, Leaf, Palette, Sparkles } from "lucide-react";
import FaqBase from '@/components/sections/faq/FaqBase';
@@ -69,16 +68,6 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
faqs={[
{ id: "1", title: "What is your return policy?", content: "Our return policy allows you to return items within 30 days of purchase." },
{ id: "2", title: "How long does shipping take?", content: "Shipping typically takes 5-7 business days." },
{ id: "3", title: "Do you offer international shipping?", content: "Yes, we offer international shipping to most countries." }
]}
/>
</div>
<div id="services" data-section="services">
<FeatureCardEight
title="What We Create" className="underline"
@@ -209,40 +198,6 @@ export default function LandingPage() {
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Start Your Project"
ctaDescription="Let's discuss how we can bring your vision to life. No obligation — just a genuine conversation about your needs and possibilities."
ctaButton={{ text: "Request Consultation", href: "#contact-form" }}
ctaIcon={Flower2}
useInvertedBackground="noInvert"
animationType="slide-up"
accordionAnimationType="smooth"
faqs={[
{
id: "1", title: "How far in advance should I book?", content: "For events, we recommend booking 4-8 weeks in advance to allow time for consultation, concept refinement, and creation. For custom art pieces, timelines vary — reach out to discuss your specific needs."
},
{
id: "2", title: "Do you work with my designer or event planner?", content: "Absolutely. We collaborate seamlessly with interior designers, event planners, and creative partners. We see ourselves as part of the creative team, bringing specialized botanical expertise to your project."
},
{
id: "3", title: "What is your pricing range?", content: "Pricing is completely custom based on project scope, materials, installation complexity, and timeline. We're transparent about costs and work within diverse budgets. Contact us for a detailed proposal."
},
{
id: "4", title: "Can you source specific flowers or materials?", content: "Yes, we have strong relationships with premium suppliers and can source specific botanicals, colors, and materials for your project. Some items may have seasonal availability — we'll work around that in planning."
},
{
id: "5", title: "How long does floral decor last?", content: "Fresh arrangements typically last 5-7 days. Preserved moss panels and custom art pieces last indefinitely. We'll discuss longevity and maintenance options during consultation."
}
]}
/>
</div>
<div id="contact-new" data-section="contact-new">
<ContactFaq />
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="MossArt"
@@ -273,4 +228,4 @@ export default function LandingPage() {
</ThemeProvider>
);
}
}