From 3b6350235504d28f03b669ff2469b73eec7f2557 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 20:17:38 +0000 Subject: [PATCH] Bob AI: Change business name to Contreras Landscaping Inc. in layout --- src/components/Layout.tsx | 6 +- src/pages/HomePage.tsx | 136 ++++--------------- src/pages/HomePage/sections/About.tsx | 19 +++ src/pages/HomePage/sections/Contact.tsx | 25 ++++ src/pages/HomePage/sections/Faq.tsx | 23 ++++ src/pages/HomePage/sections/Hero.tsx | 31 +++++ src/pages/HomePage/sections/Services.tsx | 31 +++++ src/pages/HomePage/sections/Testimonials.tsx | 22 +++ src/pages/HomePage/sections/WhyUs.tsx | 22 +++ 9 files changed, 199 insertions(+), 116 deletions(-) create mode 100644 src/pages/HomePage/sections/About.tsx create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/Faq.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Services.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx create mode 100644 src/pages/HomePage/sections/WhyUs.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a97c3a4..6e0335e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,7 +9,7 @@ export default function Layout() { diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index d309599..65af394 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,124 +1,34 @@ +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; -import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; -import AboutTestimonial from "@/components/sections/about/AboutTestimonial"; -import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps"; -import TeamGlassCards from "@/components/sections/team/TeamGlassCards"; -import TestimonialAvatarCard from "@/components/sections/testimonial/TestimonialAvatarCard"; -import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import ServicesSection from './HomePage/sections/Services'; +import WhyUsSection from './HomePage/sections/WhyUs'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - -
- -
+ + -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
); -} \ No newline at end of file +} diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..3e3bd92 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,19 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "about" section. + +import React from 'react'; +import AboutTestimonial from "@/components/sections/about/AboutTestimonial"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..0048b09 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,25 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "contact" section. + +import React from 'react'; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..45b5477 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,23 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..a8e13ad --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,31 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx new file mode 100644 index 0000000..8734831 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,31 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "services" section. + +import React from 'react'; +import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps"; + +export default function ServicesSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..e0ffea4 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonials" section. + +import React from 'react'; +import TestimonialAvatarCard from "@/components/sections/testimonial/TestimonialAvatarCard"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/WhyUs.tsx b/src/pages/HomePage/sections/WhyUs.tsx new file mode 100644 index 0000000..5ec3a19 --- /dev/null +++ b/src/pages/HomePage/sections/WhyUs.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "why-us" section. + +import React from 'react'; +import TeamGlassCards from "@/components/sections/team/TeamGlassCards"; + +export default function WhyUsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1