const stageLabels: Record = { 0: { label: "Beginner", color: "text-muted bg-stone" }, 1: { label: "Foundation", color: "text-amber bg-amber/10" }, 2: { label: "Growing", color: "text-sage bg-sage/10" }, 3: { label: "Established", color: "text-info bg-info/10" }, 4: { label: "Advanced", color: "text-ink bg-amber/15" }, }; export default function StageBadge({ stage }: { stage: number }) { const info = stageLabels[stage] ?? stageLabels[0]; return ( {info.label} ); }