website refactor

This commit is contained in:
2026-01-18 16:18:18 +01:00
parent 0b301feb61
commit 13567d51af
329 changed files with 4701 additions and 4750 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
import { CheckCircle, Clock, Gavel } from 'lucide-react';
import { Box } from '@/ui/Box';
import { StatBox } from '@/ui/StatBox';
import { Grid } from '@/ui/Grid';
interface StewardingStatsProps {
totalPending: number;
@@ -11,7 +11,7 @@ interface StewardingStatsProps {
export function StewardingStats({ totalPending, totalResolved, totalPenalties }: StewardingStatsProps) {
return (
<Box display="grid" responsiveGridCols={{ base: 1, sm: 3 }} gap={4} mb={6}>
<Grid cols={1} mdCols={3} gap={4} mb={6}>
<StatBox
icon={Clock}
label="Pending Review"
@@ -30,6 +30,6 @@ export function StewardingStats({ totalPending, totalResolved, totalPenalties }:
value={totalPenalties}
color="var(--racing-red)"
/>
</Box>
</Grid>
);
}