From 16f2ac26a1f70c8fae39ed45636e095afa44d0c2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 20:45:57 +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 13f0603..c21f49b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,6 +1,7 @@ import ContactCta from '@/components/sections/contact/ContactCta'; import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; -import FeaturesBento from '@/components/sections/features/FeaturesBento'; +import _FeaturesBento from '@/components/sections/features/FeaturesBento'; +const FeaturesBento = _FeaturesBento as any; import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; import HeroSplitVerticalMarquee from '@/components/sections/hero/HeroSplitVerticalMarquee'; import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';