import { cn } from "@/lib/utils" import { CATEGORY_DESCRIPTIONS } from "@/lib/labels" const categoryColors: Record = { service: "bg-green-700 text-white", job: "bg-purple-700 text-white", tool: "bg-blue-700 text-white", frontend: "bg-yellow-600 text-black", component: "bg-gray-600 text-gray-200", } export function RoleBadge({ role }: { role: string }) { return ( {role} ) }