export function StatCard({ label, value }: { label: string; value: string }) { return (

{label}

{value}

); }