website refactor

This commit is contained in:
2026-01-18 22:55:55 +01:00
parent b43a23a48c
commit aeaa43f4d3
179 changed files with 4736 additions and 6832 deletions

View File

@@ -39,18 +39,18 @@ export function RaceScheduleTable({ races, onRaceClick }: RaceScheduleTableProps
clickable
>
<TableCell>
<Text size="xs" color="text-telemetry-aqua" weight="bold">{race.time}</Text>
<Text size="xs" variant="telemetry" weight="bold">{race.time}</Text>
</TableCell>
<TableCell>
<Text size="sm" weight="bold" groupHoverTextColor="text-primary-accent">
<Text size="sm" weight="bold" variant="high">
{race.track}
</Text>
</TableCell>
<TableCell>
<Text size="xs" color="text-gray-400">{race.car}</Text>
<Text size="xs" variant="low">{race.car}</Text>
</TableCell>
<TableCell>
<Text size="xs" color="text-gray-400">{race.leagueName || 'Official'}</Text>
<Text size="xs" variant="low">{race.leagueName || 'Official'}</Text>
</TableCell>
<TableCell textAlign="right">
<SessionStatusBadge status={race.status} />