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

This commit is contained in:
kudinDmitriyUp
2026-06-17 14:47:15 +00:00
parent c43c643cb6
commit ac16756cc3

View File

@@ -5,8 +5,15 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TeamStackedCards from '@/components/sections/team/TeamStackedCards';
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
import TestimonialQuoteCardsOriginal from '@/components/sections/testimonial/TestimonialQuoteCards';
import { Award, TrendingUp, Users } from "lucide-react";
import { ComponentProps } from 'react';
const TestimonialQuoteCards = (
props: Omit<ComponentProps<typeof TestimonialQuoteCardsOriginal>, 'testimonials'> & {
testimonials: Array<{ id?: string | number; name: string; role: string; quote: string; imageSrc: string; videoSrc?: string }>
}
) => <TestimonialQuoteCardsOriginal {...(props as unknown as ComponentProps<typeof TestimonialQuoteCardsOriginal>)} />;
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {