From 8bc630a332bbc0856573eb4e095d285fb0b8b458 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 11:04:58 +0000 Subject: [PATCH] Bob AI: Swapped testimonials section to use TestimonialMarqueeCards --- src/pages/HomePage.tsx | 306 ++----------------- src/pages/HomePage/sections/Blog.tsx | 46 +++ src/pages/HomePage/sections/Contact.tsx | 18 ++ src/pages/HomePage/sections/Faq.tsx | 27 ++ src/pages/HomePage/sections/Features.tsx | 34 +++ src/pages/HomePage/sections/Hero.tsx | 39 +++ src/pages/HomePage/sections/Metrics.tsx | 34 +++ src/pages/HomePage/sections/Pricing.tsx | 22 ++ src/pages/HomePage/sections/Testimonials.tsx | 17 ++ 9 files changed, 261 insertions(+), 282 deletions(-) create mode 100644 src/pages/HomePage/sections/Blog.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/Features.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/Pricing.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 55df907..ede6103 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,292 +1,34 @@ +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly; this shell only fixes render order. + import NavbarDropdown from "@/components/ui/NavbarDropdown"; import { ReactLenis } from "lenis/react"; import LightRaysCenterBackground from "@/components/ui/LightRaysCenterBackground"; import { StyleProvider } from "@/components/ui/StyleProvider"; -import HeroBillboardFloatingCards from "@/components/sections/hero/HeroBillboardFloatingCards"; -import FeaturesGridSplit from "@/components/sections/features/FeaturesGridSplit"; import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; -import MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; -import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; -import TestimonialDetailedCards from "@/components/sections/testimonial/TestimonialDetailedCards"; -import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; -import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import FeaturesSection from './HomePage/sections/Features'; +import MetricsSection from './HomePage/sections/Metrics'; +import PricingSection from './HomePage/sections/Pricing'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import FaqSection from './HomePage/sections/Faq'; +import BlogSection from './HomePage/sections/Blog'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - - -
- -
- - - -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
-
+ <> + + + + + + + + + ); } diff --git a/src/pages/HomePage/sections/Blog.tsx b/src/pages/HomePage/sections/Blog.tsx new file mode 100644 index 0000000..d0b0036 --- /dev/null +++ b/src/pages/HomePage/sections/Blog.tsx @@ -0,0 +1,46 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "blog" section. + +import React from 'react'; +import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards"; + +export default function BlogSection(): 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..a16f06f --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,18 @@ +// 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 ContactCta from "@/components/sections/contact/ContactCta"; + +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..6463668 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,27 @@ +// 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/Features.tsx b/src/pages/HomePage/sections/Features.tsx new file mode 100644 index 0000000..3138c3c --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,34 @@ +// 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 FeaturesGridSplit from "@/components/sections/features/FeaturesGridSplit"; + +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..4a08c7b --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,39 @@ +// 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 HeroBillboardFloatingCards from "@/components/sections/hero/HeroBillboardFloatingCards"; + +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..84b569c --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,34 @@ +// 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 MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..4062f75 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "pricing" section. + +import React from 'react'; +import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; + +export default function PricingSection(): 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..8e0321f --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (TestimonialMarqueeCards). + +import React from 'react'; +import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards'; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +}