Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-04-07 17:37:33 +00:00

View File

@@ -33,7 +33,6 @@ export default function LandscapingPage() {
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Consultation", href: "#contact" }}
@@ -112,54 +111,51 @@ export default function LandscapingPage() {
/>
</div>
<div id="contact" data-section="contact" className="relative py-24 bg-background">
<div className="max-w-7xl mx-auto px-6">
<ContactSplitForm
title="Book Your Luxury Consultation"
description="Our lead designers are ready to elevate your outdoor space. Request a private on-site evaluation today."
buttonText="Request Consultation"
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "propertyType", type: "text", placeholder: "Property Type (e.g. Residential/Commercial)" },
]}
multiSelect={{
name: "service", label: "Service of Interest", options: ["Full Landscape Design", "Hardscaping Construction", "Seasonal Maintenance", "Irrigation Solutions"],
}}
textarea={{ name: "details", placeholder: "Briefly describe your vision or specific landscape goals...", rows: 5 }}
className="bg-card p-12 rounded-2xl shadow-xl border border-border"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Start Your Landscape Journey"
description="Schedule your personal on-site consultation and let our design experts help you realize your vision for the perfect outdoor sanctuary."
buttonText="Send Request"
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "address", type: "text", placeholder: "Property Address" },
]}
multiSelect={{
name: "service", label: "Primary Focus", options: ["Luxury Garden Design", "Hardscape Construction", "Sustainable Irrigation", "Maintenance Program"],
}}
textarea={{ name: "message", placeholder: "Please describe your project requirements and any specific preferences...", rows: 6 }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "GreenScape", items: [
{ label: "Our Philosophy", href: "#about" },
{ label: "Meet the Experts", href: "#team" },
{ label: "Client Success Stories", href: "#testimonials" },
title: "GreenScape Luxury", items: [
{ label: "Company Philosophy", href: "#about" },
{ label: "Project Gallery", href: "#services" },
{ label: "Design Experts", href: "#why-us" },
],
},
{
title: "Support", items: [
{ label: "Help Center", href: "#faq" },
{ label: "Maintenance Guides", href: "#" },
{ label: "Privacy Policy", href: "#" },
title: "Connect", items: [
{ label: "Inquire Now", href: "#contact" },
{ label: "Careers", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
{
title: "Headquarters", items: [
{ label: "123 Garden Avenue" },
{ label: "Los Angeles, CA 90001" },
{ label: "hello@greenscape.luxury" },
title: "Visit", items: [
{ label: "123 Botanic Way" },
{ label: "Suite 400, Seattle, WA" },
{ label: "hello@greenscape.co" },
],
},
]}
bottomLeftText="© 2026 GreenScape Luxury Landscapes"
bottomRightText="Crafted with care for distinguished properties"
bottomLeftText="© 2026 GreenScape. All Rights Reserved."
bottomRightText="Excellence in Landscape Architecture"
/>
</div>
</ReactLenis>