From 9a0168209c534d9e6ef8ccd4d27b32caabf28fb1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 20:46:04 +0000 Subject: [PATCH] Add FeaturedContributor type cgen-61e20671a58040bf8fa40db65fd1e9a5 --- client/pages/Community.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/pages/Community.tsx b/client/pages/Community.tsx index 3af7546b..c2452ab1 100644 --- a/client/pages/Community.tsx +++ b/client/pages/Community.tsx @@ -176,6 +176,19 @@ type SpotlightCreator = { }[]; }; +type FeaturedContributor = { + name: string; + avatar: string; + title: string; + contributions: number; + badge: string; + speciality: string; + bio: string; + recentContribution: string; + reputation: string; + profileUrl: string; +}; + type ModerationTool = { id: string; title: string;