interface BadgeProps { className?: string; title: string; } export default function Badge({ title, className }: BadgeProps) { return {title} }