From 2894f75520284c94a16602a92fa2314697bec49d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 19:49:07 +0000 Subject: [PATCH] Bob AI: Added logo marquee section after hero --- src/pages/HomePage.tsx | 186 +++---------------- src/pages/HomePage/sections/Faq.tsx | 27 +++ src/pages/HomePage/sections/Features.tsx | 39 ++++ src/pages/HomePage/sections/Hero.tsx | 29 +++ src/pages/HomePage/sections/LogoMarquee.tsx | 35 ++++ src/pages/HomePage/sections/Metrics.tsx | 23 +++ src/pages/HomePage/sections/Pricing.tsx | 63 +++++++ src/pages/HomePage/sections/Testimonials.tsx | 37 ++++ 8 files changed, 274 insertions(+), 165 deletions(-) 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/LogoMarquee.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 80f898a..a9151ce 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,182 +1,38 @@ -import { BarChart3, Film, Megaphone } from "lucide-react"; +// 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 NoiseGradientBackground from "@/components/ui/NoiseGradientBackground"; import { StyleProvider } from "@/components/ui/StyleProvider"; -import HeroBillboardCreator from "@/components/sections/hero/HeroBillboardCreator"; -import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; -import TestimonialColumnMarqueeCards from "@/components/sections/testimonial/TestimonialColumnMarqueeCards"; -import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; -import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; -import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import MetricsSection from './HomePage/sections/Metrics'; +import FeaturesSection from './HomePage/sections/Features'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import PricingSection from './HomePage/sections/Pricing'; +import FaqSection from './HomePage/sections/Faq'; -export default function HomePage() { + +import LogoMarqueeSection from './HomePage/sections/LogoMarquee';export default function HomePage(): 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..26d6cba --- /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..0aa7b76 --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,39 @@ +// 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 FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; + +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..65eeb27 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,29 @@ +// 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 HeroBillboardCreator from "@/components/sections/hero/HeroBillboardCreator"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/LogoMarquee.tsx b/src/pages/HomePage/sections/LogoMarquee.tsx new file mode 100644 index 0000000..c659219 --- /dev/null +++ b/src/pages/HomePage/sections/LogoMarquee.tsx @@ -0,0 +1,35 @@ +import LoopCarousel from "@/components/ui/LoopCarousel"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; + +export default function LogoMarqueeSection() { + return ( +
+
+

+ Trusted by innovative creators and brands +

+
+ +
+ {[ + "https://storage.googleapis.com/webild/users/user_3FBeFqmGHuqiH6r1CWnxJcwPK6F/uploaded-1781552885298-fgyz6nss.jpg", + "https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=800&q=80", + "https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?w=800&q=80", + "https://images.unsplash.com/photo-1611162618071-b39a2ec055fb?w=800&q=80", + "https://images.unsplash.com/photo-1611162616475-46b635cb6868?w=800&q=80", + "https://storage.googleapis.com/webild/users/user_3FBeFqmGHuqiH6r1CWnxJcwPK6F/uploaded-1781552885298-fgyz6nss.jpg", + "https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=800&q=80", + "https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?w=800&q=80", + ].map((src, idx) => ( +
+ +
+ ))} +
+
+
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx new file mode 100644 index 0000000..1210759 --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,23 @@ +// 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 { BarChart3, Film, Megaphone } from "lucide-react"; +import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; + +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..e3b0705 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,63 @@ +// 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 PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; + +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..1c7677d --- /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 TestimonialColumnMarqueeCards from "@/components/sections/testimonial/TestimonialColumnMarqueeCards"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1