diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index b79edfca..893bb6dc 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -149,24 +149,32 @@ export default function Index() { {/* Stats Section */}
-
- {stats.map((stat, index) => { - const Icon = stat.icon; - return ( -
-
-
- + {!statsVisible ? ( + + ) : ( +
+ {stats.map((stat, index) => { + const Icon = stat.icon; + return ( +
+
+
+ +
+
+
+
{stat.value}
+

{stat.label}

-
-
{stat.value}
-

{stat.label}

-
-
- ); - })} -
+ ); + })} +
+ )}