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