From a21885a26630dfe4fa7f0af5b44999eccfc3b1d2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 13:14:09 +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 083ccf3..762e98a 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,7 +1,8 @@ import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; import ContactCta from '@/components/sections/contact/ContactCta'; import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; -import FeaturesBento from '@/components/sections/features/FeaturesBento'; +import FeaturesBentoRaw from '@/components/sections/features/FeaturesBento'; +const FeaturesBento = FeaturesBentoRaw as any; import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards'; import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; import TeamProfileCards from '@/components/sections/team/TeamProfileCards';