From e780d67f0f425e47a0ff5421943f8624cd570a3d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 01:22:22 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 19afa1e..09b8d6b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -4,7 +4,15 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee'; import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; -import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; +import OriginalTestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; + +const TestimonialColumnMarqueeCards = (props: any) => { + const items = props.items?.map((item: any) => { + const { id, ...rest } = item; + return rest; + }); + return ; +}; import { Award, Box, Download, Globe, Globe2, Palette } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";