From 7fc6e898e9830689151e33b81a936baddf02f10f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 00:50:52 +0000 Subject: [PATCH 1/2] Bob AI: Update global font to Plus Jakarta Sans --- src/index.css | 4 +- src/pages/HomePage.tsx | 215 +++---------------- src/pages/HomePage/sections/About.tsx | 19 ++ src/pages/HomePage/sections/Contact.tsx | 25 +++ src/pages/HomePage/sections/Faq.tsx | 43 ++++ src/pages/HomePage/sections/Hero.tsx | 36 ++++ src/pages/HomePage/sections/Services.tsx | 47 ++++ src/pages/HomePage/sections/Team.tsx | 34 +++ src/pages/HomePage/sections/Testimonials.tsx | 23 ++ src/pages/HomePage/sections/WhyUs.tsx | 34 +++ 10 files changed, 287 insertions(+), 193 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/Team.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx create mode 100644 src/pages/HomePage/sections/WhyUs.tsx diff --git a/src/index.css b/src/index.css index dedc66f..e7e01e5 100644 --- a/src/index.css +++ b/src/index.css @@ -95,8 +95,8 @@ --color-background-accent: var(--background-accent); /* Fonts */ - --font-sans: "Inter", sans-serif; - --font-tight: "Inter Tight", sans-serif; + --font-sans: "Plus Jakarta Sans", sans-serif; + --font-tight: "Plus Jakarta Sans", sans-serif; --font-mono: monospace; /* Border Radius */ diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index d060329..6da7317 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,206 +1,39 @@ -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 TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; -import TestimonialAvatarCard from "@/components/sections/testimonial/TestimonialAvatarCard"; -import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +// 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. -export default function HomePage() { +import { StyleProvider } from "@/components/ui/StyleProvider"; +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 TeamSection from './HomePage/sections/Team'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; + +export default function HomePage(): React.JSX.Element { return ( -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..b0704cb --- /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..acc045d --- /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..7b0100c --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,43 @@ +// 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..3a61f86 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,36 @@ +// 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..10f7a04 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,47 @@ +// 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/Team.tsx b/src/pages/HomePage/sections/Team.tsx new file mode 100644 index 0000000..fec0e95 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,34 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "team" section. + +import React from 'react'; +import TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; + +export default function TeamSection(): 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..e510451 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,23 @@ +// 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..604ff53 --- /dev/null +++ b/src/pages/HomePage/sections/WhyUs.tsx @@ -0,0 +1,34 @@ +// 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 From 60ae71fcd35713df4285fe34d02886d3cea7f028 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 00:51:24 +0000 Subject: [PATCH 2/2] Bob AI: Update content with Angelic Gardens details --- src/pages/HomePage/sections/Contact.tsx | 16 +++++----- src/pages/HomePage/sections/Hero.tsx | 16 +++++----- src/pages/HomePage/sections/Services.tsx | 39 +++--------------------- 3 files changed, 21 insertions(+), 50 deletions(-) diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx index acc045d..5b4cc27 100644 --- a/src/pages/HomePage/sections/Contact.tsx +++ b/src/pages/HomePage/sections/Contact.tsx @@ -8,18 +8,18 @@ export default function ContactSection(): React.JSX.Element { return (
+ textarea={{ name: "message", placeholder: "Tell us about your project...", rows: 4, required: true }} + buttonText="Send Message" + imageSrc="https://storage.googleapis.com/webild/default/templates/landscaping/img-2.jpg" + />
); } diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 3a61f86..8e40d32 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -8,13 +8,13 @@ export default function HeroSection(): React.JSX.Element { return (
+ />
); } diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx index 10f7a04..981f27e 100644 --- a/src/pages/HomePage/sections/Services.tsx +++ b/src/pages/HomePage/sections/Services.tsx @@ -8,40 +8,11 @@ export default function ServicesSection(): React.JSX.Element { return (
+ tag="Our Services" + title="What We Do" + description="From design to maintenance, we handle every aspect of your landscape." + steps={[{"imageSrc":"https://storage.googleapis.com/webild/default/templates/landscaping/img-3.jpg","title":"Installation","subtitle":"Full Installation","tag":"Installation","description":"We handle the complete installation process for your landscape."},{"tag":"Fumigation","subtitle":"Pest Control","description":"Professional fumigation services to keep your garden healthy.","imageSrc":"https://storage.googleapis.com/webild/default/templates/landscaping/img-4.jpg","title":"Fumigation"},{"title":"Lawn Mowing","imageSrc":"https://storage.googleapis.com/webild/default/templates/landscaping/img-5.jpg","description":"Keep your property looking pristine with our lawn mowing services.","subtitle":"Maintenance","tag":"Lawn Mowing"},{"imageSrc":"https://storage.googleapis.com/webild/default/templates/landscaping/img-2.jpg","title":"Pruning & Tree Cutting","tag":"Pruning","subtitle":"Tree Care","description":"Expert pruning and tree cutting for a safe and beautiful landscape."}]} + />
); } -- 2.49.1