From b496d144edd9a8039d6a68fe318802a3820f497a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 13:58:38 +0000 Subject: [PATCH] Bob AI: Add user requested components to homepage --- src/components/Layout.tsx | 5 ++- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/Faq.tsx | 41 +++++--------------- src/pages/HomePage/sections/Metrics.tsx | 37 +++++------------- src/pages/HomePage/sections/Team.tsx | 17 ++++++++ src/pages/HomePage/sections/Testimonials.tsx | 34 +++++----------- 6 files changed, 52 insertions(+), 86 deletions(-) create mode 100644 src/pages/HomePage/sections/Team.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c881c4c..a295c65 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,4 +1,4 @@ -import FooterSimple from '@/components/sections/footer/FooterSimple'; +import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; import NavbarInline from '@/components/ui/NavbarInline'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; @@ -53,8 +53,9 @@ export default function Layout() { - @@ -27,6 +28,7 @@ export default function HomePage(): React.JSX.Element { + diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx index 7b5f509..2b2268d 100644 --- a/src/pages/HomePage/sections/Faq.tsx +++ b/src/pages/HomePage/sections/Faq.tsx @@ -1,38 +1,17 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "faq" section. +// Created by add_section_from_catalog (FaqTwoColumn). import React from 'react'; -import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; export default function FaqSection(): React.JSX.Element { return ( -
- - - -
+
+ +
); } diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx index d24559e..95991f1 100644 --- a/src/pages/HomePage/sections/Metrics.tsx +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -1,34 +1,17 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "metrics" section. +// Created by add_section_from_catalog (MetricsIconCards). import React from 'react'; -import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; export default function MetricsSection(): 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..958b346 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (TeamListCards). + +import React from 'react'; +import TeamListCards from '@/components/sections/team/TeamListCards'; + +export default function TeamSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx index e95dbe3..58dcf1c 100644 --- a/src/pages/HomePage/sections/Testimonials.tsx +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -1,32 +1,16 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "testimonials" section. +// Created by add_section_from_catalog (TestimonialAvatarCard). import React from 'react'; -import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; export default function TestimonialsSection(): React.JSX.Element { return ( -
- - - -
+
+ +
); } -- 2.49.1