From ec5cd5948cd0636fcd4208a188661e9dc07a58c5 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 9 Feb 2026 17:38:10 +0200 Subject: [PATCH] Bob AI: add a new feature about 'Real-time Multiplayer' wi... --- .../sections/feature/FeatureCardTwentyFive.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/sections/feature/FeatureCardTwentyFive.tsx b/src/components/sections/feature/FeatureCardTwentyFive.tsx index 5f8f7f5..a3114e5 100644 --- a/src/components/sections/feature/FeatureCardTwentyFive.tsx +++ b/src/components/sections/feature/FeatureCardTwentyFive.tsx @@ -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 ( -{features.slice(0, 2).map((feature, index) => { +{updatedFeatures.slice(0, 2).map((feature, index) => { const IconComponent = feature.icon; return (