const colors: Record = { GK: "bg-yellow-400 text-yellow-900", DEF: "bg-blue-500 text-white", MID: "bg-green-500 text-white", FWD: "bg-red-500 text-white", }; const labels: Record = { GK: "دروازه‌بان", DEF: "مدافع", MID: "هافبک", FWD: "مهاجم", }; export default function PositionBadge({ position }: { position: string }) { return ( {labels[position] ?? position} ); }