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 */}