import Image from 'next/image'; import { cn } from '@/lib/utils'; export const DIFFICULTY_COLOR = { 1: 'green', 2: 'yellow', 3: 'red' }; export default function Badge({ name, src, alt, level }: { name: string; src: string; alt: string; level: number; }) { return (