Bob AI: make the features section show only 2 features
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user