From 6e16f41aa91de733e6264b34e9ca3dec1154488c Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 22:49:34 +0000 Subject: [PATCH] Add forums tab content cgen-2add74651cdc4c30961e9ee60c67dc73 --- client/pages/Community.tsx | 73 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index fc09cb82..4939c05e 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -2612,6 +2612,79 @@ export default function Community() { + + + {/* Forums & Discussion */} +
+
+ +
+ {forumSpaces.map((space, index) => { + const Icon = space.icon; + return ( + + +
+
+
+ +
+
+ + {space.name} + + + {space.description} + +
+
+ + {space.threads} threads + +
+
+ +
+ {space.activeToday} active today + + Latest + +
+
+

+ {space.latestThread.title} +

+

+ by {space.latestThread.author} • {space.latestThread.timeAgo} +

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