Merge version_5_1781192838459 into main #4

Merged
bender merged 1 commits from version_5_1781192838459 into main 2026-06-11 15:50:35 +00:00

View File

@@ -1,36 +1,19 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "home" section.
// Created by add_section_from_catalog (HeroOverlay).
import React from 'react';
import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
export default function HomeSection(): React.JSX.Element {
return (
<div id="home" data-section="home">
<SectionErrorBoundary name="home">
<HeroSplitMediaGrid
tag="Your Dream Outdoor Space"
title="Transform Your Landscape into a Personal Paradise"
description="At GreenScape Pros, we design, build, and maintain stunning outdoor environments that enhance your lifestyle and property value. From lush gardens to elegant patios, we bring your vision to life."
primaryButton={{
text: "Explore Services",
href: "#services",
}}
secondaryButton={{
text: "Get a Free Quote",
href: "#contact",
}}
items={[
{
imageSrc: "https://images.pexels.com/photos/28586224/pexels-photo-28586224.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
},
{
imageSrc: "https://images.pexels.com/photos/8189129/pexels-photo-8189129.jpeg?auto=compress&cs=tinysrgb&h=650&w=940",
},
]}
/>
</SectionErrorBoundary>
</div>
<div data-webild-section="home" id="home">
<HeroOverlay
description="At GreenScape Pros, we design, build, and maintain stunning outdoor environments that enhance your lifestyle and property value. From lush gardens to elegant patios, we bring your vision to life."
primaryButton={{"href":"#services","text":"Explore Services"}}
tag="Your Dream Outdoor Space"
secondaryButton={{"text":"Get a Free Quote","href":"#contact"}}
title="Transform Your Landscape into a Personal Paradise"
imageSrc="https://picsum.photos/seed/770274521/1200/800"
/>
</div>
);
}