From 9a65973e1621801ceef08fa0b918a0c0e232895a Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 22:48:32 +0000 Subject: [PATCH] Add stats tab content cgen-339d85b0c9b44368b7da7a977ec6c9a2 --- client/pages/Community.tsx | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index af8366ae..5a5dd188 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -2439,6 +2439,40 @@ export default function Community() { + + + {/* Community Stats */} +
+
+
+ {stats.map((stat, index) => { + const Icon = stat.icon; + return ( +
+
+
+ +
+
+
+
+ {stat.value} +
+

+ {stat.label} +

+
+
+ ); + })} +
+
+
+
{/* Community Stats */}