From b02b491e79ff7ff87fce8a879619d224cec60269 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 22:51:52 +0000 Subject: [PATCH] Add collaboration tab content cgen-829eaab1e2734e1c92f97f9a43ecf7a5 --- client/pages/Community.tsx | 84 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index 0acc0788..eff06f14 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -2823,6 +2823,90 @@ export default function Community() { + + + {/* Real-time Collaboration */} +
+
+ +
+ + + Active channels + + See who’s online and jump into the conversations that matter right now. + + + + {chatChannels.map((channel) => { + const Icon = channel.icon; + return ( +
+
+
+
+ +
+
+

+ {channel.name} +

+

+ {channel.description} +

+
+
+ + {channel.participants} members + +
+
+ Synced with Discord + + {channel.activeNow} live now + +
+
+ ); + })} +
+
+ + + Why players love integrated chat + + Keep every squad aligned across devices with presence, threads, and recordings. + + + +
    + {chatFeatures.map((feature) => ( +
  • + + {feature} +
  • + ))} +
+ +
+
+
+
+
+
{/* Community Stats */}