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";