diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 21c1906..e35da77 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,16 @@ import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRev import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import TeamOverlayCards from '@/components/sections/team/TeamOverlayCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import TestimonialRatingCardsOriginal from '@/components/sections/testimonial/TestimonialRatingCards'; + +const TestimonialRatingCards = (props: any) => { + const { testimonials, ...rest } = props; + const cleanTestimonials = testimonials?.map((t: any) => { + const { id, ...restT } = t; + return restT; + }); + return ; +}; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() {