Bob AI: fix build error in src/pages/HomePage.tsx

This commit is contained in:
kudinDmitriyUp
2026-06-15 14:30:48 +00:00
parent 66b8e88f81
commit fd1f6c0e35

View File

@@ -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 <TestimonialRatingCardsOriginal {...rest} testimonials={cleanTestimonials} />;
};
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {