const LEGEND = [ ['Frontend', '#3B82F6'], ['Backend', '#8B5CF6'], ['Database', '#10B981'], ['API', '#F59E0B'], ['Auth', '#EF4444'], ['Utility', '#64748B'], ]; export default function GraphControls() { return (

Legend

{LEGEND.map(([label, color]) => (
{label}
))}
); }