website refactor

This commit is contained in:
2026-01-19 12:35:16 +01:00
parent a8731e6937
commit 15290400b3
122 changed files with 902 additions and 255 deletions

View File

@@ -6,6 +6,7 @@ interface Stat {
label: string;
value: string | number;
intent?: 'primary' | 'telemetry' | 'success' | 'critical';
color?: string;
}
interface ProfileStatGridProps {
@@ -17,6 +18,7 @@ export function ProfileStatGrid({ stats }: ProfileStatGridProps) {
label: stat.label,
value: stat.value,
intent: stat.intent || 'primary',
color: stat.color,
icon: Bug // Default icon if none provided, but StatBox requires one
}));