From cb89514ae279ea25a8733229b531edc025fde941 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:21:00 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 2fdf3c4..b7e982c 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -6,7 +6,8 @@ import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee'; import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TeamOverlayCards from '@/components/sections/team/TeamOverlayCards'; -import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; +import _TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; +const TestimonialMarqueeOverlayCards = _TestimonialMarqueeOverlayCards as any; import { Award, Bell, Map, MapPin, Smile, Star } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";