From f749e32842cb83a9903f62a712a454c3bcbcbcb6 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 22:50:40 +0000 Subject: [PATCH] Add feedback tab content cgen-5aa5aad1376644daaab4ffb96cd23282 --- client/pages/Community.tsx | 114 +++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index 4939c05e..a96eafce 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -2685,6 +2685,120 @@ export default function Community() { + + + {/* Feedback & Roadmap */} +
+
+ +
+
+ {feedbackChannels.map((channel) => { + const Icon = channel.icon; + return ( + + +
+
+
+ +
+
+ + {channel.title} + + + {channel.description} + +
+
+ + {channel.submissionsThisWeek} this week + +
+

+ Stewarded by {channel.owner} +

+
+ +
+ {channel.statuses.map((status) => ( + + {status.label}: {status.count} + + ))} +
+ +
+
+ ); + })} +
+ + + Live roadmap snapshot + + Track what the team is shipping next based on player momentum. + + + + {roadmapSnapshot.map((item) => ( +
+
+

+ {item.title} +

+

+ {item.eta} +

+
+ + {item.status} + +
+ ))} + +
+
+
+
+
+
{/* Community Stats */}