From 4460432d01462d97a73a2a12928f1def9c9f0c6a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 09:31:53 +0000 Subject: [PATCH] Bob AI: Added a media carousel section with the uploaded images. --- src/pages/HomePage.tsx | 273 ++---------------- src/pages/HomePage/sections/Contact.tsx | 20 ++ src/pages/HomePage/sections/Faq.tsx | 40 +++ src/pages/HomePage/sections/Hero.tsx | 32 ++ src/pages/HomePage/sections/MediaCarousel.tsx | 35 +++ src/pages/HomePage/sections/Metrics.tsx | 50 ++++ src/pages/HomePage/sections/Promise.tsx | 36 +++ src/pages/HomePage/sections/Services.tsx | 46 +++ src/pages/HomePage/sections/Team.tsx | 35 +++ src/pages/HomePage/sections/Testimonials.tsx | 26 ++ src/pages/HomePage/sections/Work.tsx | 42 +++ 11 files changed, 390 insertions(+), 245 deletions(-) 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/MediaCarousel.tsx create mode 100644 src/pages/HomePage/sections/Metrics.tsx create mode 100644 src/pages/HomePage/sections/Promise.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/Work.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index cab1f26..7a4c755 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,265 +1,48 @@ +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in the sibling sections/ folder (one file per section). +// Edit those section files directly. Non-block content (wrappers, +// non-inlinable sections) is preserved inline; extracted section blocks +// become component refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroSplitVerticalMarqueeTall from "@/components/sections/hero/HeroSplitVerticalMarqueeTall"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; -import FeaturesMediaCarousel from "@/components/sections/features/FeaturesMediaCarousel"; -import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; -import TeamStackedCards from "@/components/sections/team/TeamStackedCards"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import ServicesSection from './HomePage/sections/Services'; +import WorkSection from './HomePage/sections/Work'; +import PromiseSection from './HomePage/sections/Promise'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import MetricsSection from './HomePage/sections/Metrics'; +import TeamSection from './HomePage/sections/Team'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { + +import MediaCarouselSection from './HomePage/sections/MediaCarousel';export default function HomePage(): 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..c44c274 --- /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 ContactCenter from "@/components/sections/contact/ContactCenter"; + +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..2df713a --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,40 @@ +// 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 FaqSimple from "@/components/sections/faq/FaqSimple"; + +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..be7569d --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,32 @@ +// 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 HeroSplitVerticalMarqueeTall from "@/components/sections/hero/HeroSplitVerticalMarqueeTall"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/MediaCarousel.tsx b/src/pages/HomePage/sections/MediaCarousel.tsx new file mode 100644 index 0000000..b7809d7 --- /dev/null +++ b/src/pages/HomePage/sections/MediaCarousel.tsx @@ -0,0 +1,35 @@ +import React from 'react'; +import Carousel from '@/components/ui/Carousel'; +import ImageOrVideo from '@/components/ui/ImageOrVideo'; +import TextAnimation from '@/components/ui/TextAnimation'; +import ScrollReveal from '@/components/ui/ScrollReveal'; + +export default function MediaCarouselSection() { + const images = [ + "https://storage.googleapis.com/webild/users/user_3FtXGZmo2q34ph3RhCNPCt0XPUG/uploaded-1782898092527-2qlsj3la.png", + "https://storage.googleapis.com/webild/users/user_3FtXGZmo2q34ph3RhCNPCt0XPUG/uploaded-1782898092529-kmn0xb0w.png", + "https://storage.googleapis.com/webild/users/user_3FtXGZmo2q34ph3RhCNPCt0XPUG/uploaded-1782898092530-w252bepw.png" + ]; + + return ( + + ); +} \ 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..e8f103b --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,50 @@ +// 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/Promise.tsx b/src/pages/HomePage/sections/Promise.tsx new file mode 100644 index 0000000..911336c --- /dev/null +++ b/src/pages/HomePage/sections/Promise.tsx @@ -0,0 +1,36 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "promise" section. + +import React from 'react'; +import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +export default function PromiseSection(): 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..f90852d --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,46 @@ +// 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 FeaturesBento from "@/components/sections/features/FeaturesBento"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +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..4d86b24 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,35 @@ +// 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 TeamStackedCards from "@/components/sections/team/TeamStackedCards"; + +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..a6a819a --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,26 @@ +// 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 TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Work.tsx b/src/pages/HomePage/sections/Work.tsx new file mode 100644 index 0000000..72e635a --- /dev/null +++ b/src/pages/HomePage/sections/Work.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "work" section. + +import React from 'react'; +import FeaturesMediaCarousel from "@/components/sections/features/FeaturesMediaCarousel"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +export default function WorkSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1