This commit is contained in:
2026-06-02 10:23:09 +03:00
parent e08d555b23
commit 0c87eaef46
136 changed files with 16069 additions and 94 deletions

16
components/StatCard.tsx Normal file
View File

@@ -0,0 +1,16 @@
export function StatCard({
label,
value,
color = "text-fg",
}: {
label: string;
value: number | string;
color?: string;
}) {
return (
<div className="bg-surface border-2 border-border rounded-2xl p-5 shadow-card">
<div className={`font-mono text-3xl font-bold ${color}`}>{value}</div>
<div className="text-muted text-sm mt-1">{label}</div>
</div>
);
}