Bob AI: add a new feature about 'Real-time Multiplayer' wi...

This commit is contained in:
2026-02-09 17:38:10 +02:00
parent 9e842afffa
commit ec5cd5948c

View File

@@ -98,6 +98,15 @@ const FeatureCardTwentyFive = ({
const theme = useTheme();
const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle);
const newFeature: FeatureCard = {
title: "Real-time Multiplayer",
description: "Engage in real-time multiplayer battles with friends and foes alike.",
icon: Sword,
mediaItems: [{}, {}],
};
const updatedFeatures = [...features, newFeature];
return (
<CardStack
mode={carouselMode}
@@ -130,7 +139,7 @@ const FeatureCardTwentyFive = ({
buttonTextClassName={textBoxButtonTextClassName}
ariaLabel={ariaLabel}
>
{features.slice(0, 2).map((feature, index) => {
{updatedFeatures.slice(0, 2).map((feature, index) => {
const IconComponent = feature.icon;
return (
<div