From 7ff1a5c155f6cd34339ca4e2c9a5ad50dc6c1e58 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Tue, 24 Feb 2026 15:10:48 +0200 Subject: [PATCH] Bob AI: Modify the FeatureCardNineteen component to apply different --- src/components/sections/feature/FeatureCardNineteen.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/sections/feature/FeatureCardNineteen.tsx b/src/components/sections/feature/FeatureCardNineteen.tsx index 33fd7b7..9facab3 100644 --- a/src/components/sections/feature/FeatureCardNineteen.tsx +++ b/src/components/sections/feature/FeatureCardNineteen.tsx @@ -119,12 +119,14 @@ const FeatureCardNineteen = ({ titleImageClassName={titleImageClassName} ariaLabel={ariaLabel} > - {features.map((feature) => { + {features.map((feature, index) => { const stepNumber = String(feature.id).padStart(2, "0"); + const backgroundColors = ["bg-blue-100", "bg-pink-100", "bg-yellow-100", "bg-green-100", "bg-purple-100", "bg-orange-100"]; + const bgColor = backgroundColors[index % backgroundColors.length]; return (