From 506e62b23170a3fdee9de0e7529ea29a1e75b5d7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 13:30:17 +0000 Subject: [PATCH] Bob AI: Updated global theme to white and green palette --- src/index.css | 16 +-- src/pages/HomePage.tsx | 136 ++++--------------- src/pages/HomePage/sections/About.tsx | 23 ++++ src/pages/HomePage/sections/Contact.tsx | 25 ++++ src/pages/HomePage/sections/Faq.tsx | 21 +++ src/pages/HomePage/sections/Hero.tsx | 22 +++ src/pages/HomePage/sections/Metrics.tsx | 22 +++ src/pages/HomePage/sections/Process.tsx | 22 +++ src/pages/HomePage/sections/Services.tsx | 23 ++++ src/pages/HomePage/sections/Testimonials.tsx | 22 +++ 10 files changed, 213 insertions(+), 119 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/Metrics.tsx create mode 100644 src/pages/HomePage/sections/Process.tsx create mode 100644 src/pages/HomePage/sections/Services.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/index.css b/src/index.css index a16d56b..718e0dd 100644 --- a/src/index.css +++ b/src/index.css @@ -5,15 +5,15 @@ :root { /* @colorThemes/darkTheme/warmStoneOrange */ - --background: #1c1917; - --card: #292524; - --foreground: #fafaf9; - --primary-cta: #ea6720; + --background: #ffffff; + --card: #f9fafb; + --foreground: #1f2937; + --primary-cta: #16a34a; --primary-cta-text: #ffffff; - --secondary-cta: #44403c; - --secondary-cta-text: #fafaf9; - --accent: #f97316; - --background-accent: #fb923c; + --secondary-cta: #15803d; + --secondary-cta-text: #ffffff; + --accent: #16a34a; + --background-accent: #f9fafb; /* @layout/border-radius/soft */ --radius: 1.5rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 52efb85..a757fff 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,126 +1,40 @@ +// 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 SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; -import FeaturesRevealCards from "@/components/sections/features/FeaturesRevealCards"; -import MetricsMediaCards from "@/components/sections/metrics/MetricsMediaCards"; -import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; -import TestimonialOverlayCards from "@/components/sections/testimonial/TestimonialOverlayCards"; -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 MetricsSection from './HomePage/sections/Metrics'; +import ProcessSection from './HomePage/sections/Process'; +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..25e171c --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,23 @@ +// 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 AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; + +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..28816d7 --- /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..217aab2 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,21 @@ +// 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..a56aa45 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,22 @@ +// 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 HeroBillboard from "@/components/sections/hero/HeroBillboard"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx new file mode 100644 index 0000000..8e77a65 --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "metrics" section. + +import React from 'react'; +import MetricsMediaCards from "@/components/sections/metrics/MetricsMediaCards"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Process.tsx b/src/pages/HomePage/sections/Process.tsx new file mode 100644 index 0000000..833bd5d --- /dev/null +++ b/src/pages/HomePage/sections/Process.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "process" section. + +import React from 'react'; +import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; + +export default function ProcessSection(): 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..c7c8784 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,23 @@ +// 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 FeaturesRevealCards from "@/components/sections/features/FeaturesRevealCards"; + +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..099dcd2 --- /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 TestimonialOverlayCards from "@/components/sections/testimonial/TestimonialOverlayCards"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +}