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 (