1 Commits

Author SHA1 Message Date
kudinDmitriyUp
c4faa5549b Bob AI: Replace the existing contact section with a dedicated contac 2026-06-01 13:36:08 +00:00

View File

@@ -1,5 +1,5 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactCta from '@/components/sections/contact/ContactCta';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
import FeaturesRevealCardsBentoSharp from '@/components/sections/features/FeaturesRevealCardsBentoSharp';
@@ -274,20 +274,21 @@ export default function HomePage() {
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
<ContactSplitForm
tag="Ready for a Greener Space?"
text="Let's bring your outdoor vision to life. Get a free, no-obligation quote today!"
primaryButton={{
text: "Request a Free Quote",
href: "mailto:info@greenscapelandscaping.com",
}}
secondaryButton={{
text: "Call Us Now",
href: "tel:123-456-7890",
}}
title="Let's bring your outdoor vision to life."
description="Fill out the form below to get a free, no-obligation quote today! Our team will get back to you within 24 hours."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: false }
]}
textarea={{ name: "message", placeholder: "Tell us about your project...", rows: 4, required: true }}
buttonText="Request a Free Quote"
imageSrc=""
/>
</SectionErrorBoundary>
</div>
</>
);
}
}