From 413cb8a6e1fd5825f0871340f24bfba68489baf6 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 22:48:45 +0000 Subject: [PATCH] Add platforms tab content cgen-e3a03838ae094e5abc0ae012cd3fd2e8 --- client/pages/Community.tsx | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index 5a5dd188..34c0da00 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -2473,6 +2473,68 @@ export default function Community() { + + + {/* Community Platforms */} +
+
+
+

+ Connect on Your Favorite Platform +

+

+ Multiple ways to engage with the AeThex community +

+
+ +
+ {platforms.map((platform, index) => { + const Icon = platform.icon; + return ( + + +
+ +
+ {platform.name} + {platform.description} +
+ +
+
+ Members: + + {platform.members} + +
+
+ Activity: + + {platform.activity} + +
+
+ + +
+
+ ); + })} +
+
+
+
{/* Community Stats */}