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;