Bob AI: fix build error in src/pages/HomePage.tsx
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user