import { Badge as BadgeIcon, Trophy } from "lucide-react" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" interface Badge { id: number name: string description: string icon: string slug: string } interface BadgeListProps { badges: Badge[] } export function BadgeList({ badges }: BadgeListProps) { if (!badges || badges.length === 0) { return (
No badges earned yet. Go attend some shows!
{badge.name}
{badge.description}