Bob AI: make the features section show only 2 features

This commit is contained in:
2026-02-09 16:14:31 +02:00
parent b3b6ce6cb5
commit e725595192

View File

@@ -130,7 +130,7 @@ const FeatureCardTwentyFive = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
{features.map((feature, index) => {
{features.slice(0, 2).map((feature, index) => {
const IconComponent = feature.icon;
return (
<div
@@ -163,7 +163,7 @@ const FeatureCardTwentyFive = ({
</div>
</div>
);
})}
})}
</CardStack>
);
};