diff --git a/src/components/sections/features/FeaturesStatisticsCards.tsx b/src/components/sections/features/FeaturesStatisticsCards.tsx index 47d6feb..d835881 100644 --- a/src/components/sections/features/FeaturesStatisticsCards.tsx +++ b/src/components/sections/features/FeaturesStatisticsCards.tsx @@ -2,6 +2,7 @@ import TextAnimation from "@/components/ui/TextAnimation"; import GridOrCarousel from "@/components/ui/GridOrCarousel"; import Button from "@/components/ui/Button"; import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; type FeatureItem = { title: string; @@ -59,8 +60,8 @@ const FeaturesStatisticsCards = ({ - {items.map((item) => ( -
+ {items.map((item, index) => ( +

{item.title}

@@ -84,4 +85,4 @@ const FeaturesStatisticsCards = ({ ); }; -export default FeaturesStatisticsCards; +export default FeaturesStatisticsCards; \ No newline at end of file