diff --git a/src/components/Stats.tsx b/src/components/Stats.tsx index 84eb3876..fe10bbd3 100644 --- a/src/components/Stats.tsx +++ b/src/components/Stats.tsx @@ -99,48 +99,91 @@ const Stats = () => { {/* Stats Grid */} - {statisticsData.slice(1).map((stat, index) => ( - + {/* Top Row - 2 Items */} +
+ {statisticsData.slice(1, 3).map((stat, index) => ( - {stat.imageAlt} -
+ + {stat.imageAlt} +
+
+
+

+ {stat.title} +

+ + {stat.value} + +
+
-
-

- {stat.title} -

+ ))} +
+ + {/* Bottom Row - 3 Items */} +
+ {statisticsData.slice(3).map((stat, index) => ( + - {stat.value} + {stat.imageAlt} +
-
-
- - ))} +
+

+ {stat.title} +

+ + {stat.value} + +
+
+ + ))} +
{/* Closing Section with Interactive Element */}