From 39bca04d669444d1cbdf5090e31c3c651e8bf173 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 13 Oct 2025 23:51:36 +0000 Subject: [PATCH] Insert governance and cta tabs cgen-6b9a4e75eebf41b49a155adc28763f0a --- client/pages/Community.tsx | 208 +++++++++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index bc52547a..7817074f 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -3301,6 +3301,214 @@ export default function Community() { )} + + {activeTab === "governance" && ( + + {/* Community Governance */} +
+
+ +
+ + +
+ Community guidelines + + Expectations for every player and contributor. + +
+ + Updated weekly + +
+ +
    + {moderationGuidelines.map((guideline) => ( +
  • + +
    +

    + {guideline.title} +

    +

    + {guideline.description} +

    +
    +
  • + ))} +
+
+
+
+ + + Moderation toolkit + + Equip community managers with actionable, auditable + controls. + + + + {moderationTools.map((tool) => { + const Icon = tool.icon; + return ( +
+
+ +
+

+ {tool.title} +

+

+ {tool.description} +

+
+ ); + })} +
+
+ + + Submit a report + + Reports are routed to the right channel owners for fast + follow-up. + + + +
+
+ + + {selectedReportReason && ( +

+ {selectedReportReason.description} +

+ )} +
+
+ +