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

This commit is contained in:
kudinDmitriyUp
2026-06-16 01:20:04 +00:00
parent ebd26f5271
commit 852a545c62

View File

@@ -4,7 +4,11 @@ import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import FeaturesBentoGrid from '@/components/sections/features/FeaturesBentoGrid';
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import TestimonialMarqueeCardsOriginal from '@/components/sections/testimonial/TestimonialMarqueeCards';
const TestimonialMarqueeCards = (props: Record<string, unknown>) => (
<TestimonialMarqueeCardsOriginal {...(props as never)} />
);
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {