From 0f397ad202e9d2eb2465c5773b76c899b2f86c81 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 16:12:19 +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 a031e11..24cee51 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -4,7 +4,8 @@ import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetail import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; +import _TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; +const TestimonialColumnMarqueeCards = _TestimonialColumnMarqueeCards as any; import { Layout, Type, Zap } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";