interface StatCardProps { number: string; label: string; className?: string; } export function StatCard({ number, label, className = '' }: StatCardProps) { return (
{number}
{label}
); }