From e725595192bb49efd2b231026963bf6f03053a3e Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 9 Feb 2026 16:14:31 +0200 Subject: [PATCH] Bob AI: make the features section show only 2 features --- .../feature/FeatureCardTwentyFive.tsx | 66 +++++++++---------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/src/components/sections/feature/FeatureCardTwentyFive.tsx b/src/components/sections/feature/FeatureCardTwentyFive.tsx index e9ac161..5f8f7f5 100644 --- a/src/components/sections/feature/FeatureCardTwentyFive.tsx +++ b/src/components/sections/feature/FeatureCardTwentyFive.tsx @@ -130,40 +130,40 @@ const FeatureCardTwentyFive = ({ buttonTextClassName={textBoxButtonTextClassName} ariaLabel={ariaLabel} > - {features.map((feature, index) => { - const IconComponent = feature.icon; - return ( -
-
-
- -
-

- {feature.title} -

-

- {feature.description} -

-
-
- {feature.mediaItems.map((item, mediaIndex) => ( -
- -
- ))} -
+{features.slice(0, 2).map((feature, index) => { + const IconComponent = feature.icon; + return ( +
+
+
+ +
+

+ {feature.title} +

+

+ {feature.description} +

+
+
+ {feature.mediaItems.map((item, mediaIndex) => ( +
+
- ); - })} + ))} +
+
+ ); +})} ); };