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) => ( +
+
- ); - })} + ))} +
+
+ ); +})} ); };