import { getCategory } from "../../lib/categories"; export function CategoryBadge({ category }: { category: string }) { const cat = getCategory(category); return ( {cat.icon} {cat.label} ); }