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 (