From 1b3c2f3ce93f62ba107b9a0a75142d475265e037 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 04:58:21 +0000 Subject: [PATCH 1/2] Initial plan From 5c41aadd06ae5e08b690670de41ccf11bd821a3a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 05:03:49 +0000 Subject: [PATCH 2/2] Add FOUNDER badge and shared Badge component to PersonProfile Co-authored-by: deankroker <9809445+deankroker@users.noreply.github.com> --- app/[person]/PersonProfile.tsx | 60 ++++++++++++++++++++++++---------- 1 file changed, 42 insertions(+), 18 deletions(-) diff --git a/app/[person]/PersonProfile.tsx b/app/[person]/PersonProfile.tsx index 9bc464e..7f0d58a 100644 --- a/app/[person]/PersonProfile.tsx +++ b/app/[person]/PersonProfile.tsx @@ -28,6 +28,30 @@ const providerLinks: Record< ], }; +// Handles that get a FOUNDER badge +const founderHandles = new Set(["dean"]); + +function Badge({ + label, + color, + bg, + border, +}: { + label: string; + color: string; + bg: string; + border?: string; +}) { + return ( + + {label} + + ); +} + function EmbedFooter() { return (