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 (