From a71daf0226ca08bcc21eebfd52abcb8d206f5220 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 19:15:30 +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 503b642..bd71e16 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,8 +5,15 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import TestimonialRatingCardsOriginal from '@/components/sections/testimonial/TestimonialRatingCards'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import { ComponentProps } from 'react'; + +const TestimonialRatingCards = ( + props: ComponentProps & { + items?: Array>; + } +) => ; export default function HomePage() { return (