From 852a545c620efecc1b87fd7568db7ffcc58ae916 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 01:20:04 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 9bebe77..197ca6f 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -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) => ( + +); import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() {