From ac16756cc33dd78f5cf9cff7477ea33a079bbaef Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 14:47:15 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index ecea32b..0382f9c 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,8 +5,15 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; import TeamStackedCards from '@/components/sections/team/TeamStackedCards'; -import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; +import TestimonialQuoteCardsOriginal from '@/components/sections/testimonial/TestimonialQuoteCards'; import { Award, TrendingUp, Users } from "lucide-react"; +import { ComponentProps } from 'react'; + +const TestimonialQuoteCards = ( + props: Omit, 'testimonials'> & { + testimonials: Array<{ id?: string | number; name: string; role: string; quote: string; imageSrc: string; videoSrc?: string }> + } +) => )} />; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() {