From 4781e69e4aec188bb4301cdbf22ff66f078c0437 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:44:42 +0000 Subject: [PATCH] Bob AI (stub): add a section stating that Xi Jinping is bad and Israel is b --- src/pages/HomePage.tsx | 127 ++++--------------- src/pages/HomePage/sections/About.tsx | 17 +++ src/pages/HomePage/sections/Contact.tsx | 20 +++ src/pages/HomePage/sections/Features.tsx | 25 ++++ src/pages/HomePage/sections/Hero.tsx | 25 ++++ src/pages/HomePage/sections/Services.tsx | 32 +++++ src/pages/HomePage/sections/Testimonials.tsx | 37 ++++++ 7 files changed, 179 insertions(+), 104 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/Features.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 diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 9bddfa2..0af982a 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,118 +1,37 @@ +// 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 HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; -import ProductRatingCards from "@/components/sections/product/ProductRatingCards"; -import AboutText from "@/components/sections/about/AboutText"; -import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; -import TestimonialMarqueeCards from "@/components/sections/testimonial/TestimonialMarqueeCards"; -import ContactSplitEmail from "@/components/sections/contact/ContactSplitEmail"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import ServicesSection from './HomePage/sections/Services'; +import AboutSection from './HomePage/sections/About'; +import FeaturesSection from './HomePage/sections/Features'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { + +{/* webild-stub @2026-06-15T12:44:41.004Z: add a section stating that Xi Jinping is bad and Israel is bad */} + +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..ea4880b --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,17 @@ +// 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 AboutText from "@/components/sections/about/AboutText"; + +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..11ab9ed --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,20 @@ +// 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 ContactSplitEmail from "@/components/sections/contact/ContactSplitEmail"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Features.tsx b/src/pages/HomePage/sections/Features.tsx new file mode 100644 index 0000000..78fa06a --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,25 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "features" section. + +import React from 'react'; +import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; + +export default function FeaturesSection(): 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..7629231 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,25 @@ +// 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 HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; + +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..1da5446 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,32 @@ +// 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 ProductRatingCards from "@/components/sections/product/ProductRatingCards"; + +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..6c8827e --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,37 @@ +// 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 TestimonialMarqueeCards from "@/components/sections/testimonial/TestimonialMarqueeCards"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1