5 Commits

Author SHA1 Message Date
91f378e4df Merge version_5_1781192838459 into main
Merge version_5_1781192838459 into main
2026-06-11 15:50:35 +00:00
kudinDmitriyUp
e7ca3a5d8b Bob AI: Changed hero section to use HeroOverlay with one big image 2026-06-11 15:49:52 +00:00
32da5bbf8b Merge version_4_1781192695883 into main
Merge version_4_1781192695883 into main
2026-06-11 15:46:26 +00:00
kudinDmitriyUp
ad77e10360 Bob AI: Update color theme to blue 2026-06-11 15:45:46 +00:00
e05a4046ac Merge version_3_1781192571985 into main
Merge version_3_1781192571985 into main
2026-06-11 15:44:24 +00:00
2 changed files with 19 additions and 36 deletions

View File

@@ -5,15 +5,15 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #faf5ff;
--background: #eff6ff;
--card: #ffffff;
--foreground: #2e1065;
--primary-cta: #9333ea;
--foreground: #1e3a8a;
--primary-cta: #2563eb;
--primary-cta-text: #ffffff;
--secondary-cta: #f3e8ff;
--secondary-cta-text: #6b21a8;
--accent: #a855f7;
--background-accent: #f3e8ff;
--secondary-cta: #dbeafe;
--secondary-cta-text: #1e40af;
--accent: #3b82f6;
--background-accent: #dbeafe;
/* @layout/border-radius/rounded */
--radius: 1.5rem;

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>
);
}