'use client';
import React from 'react';
import { Flag, CalendarDays, Clock, Zap, Trophy, type LucideIcon } from 'lucide-react';
import { Heading } from '@/ui/Heading';
import { Text } from '@/ui/Text';
import { Stack } from '@/ui/Stack';
import { Box } from '@/ui/Box';
import { Icon } from '@/ui/Icon';
import { Grid } from '@/ui/Grid';
interface RacesHeaderProps {
totalCount: number;
scheduledCount: number;
runningCount: number;
completedCount: number;
}
export function RacesHeader({
totalCount,
scheduledCount,
runningCount,
completedCount,
}: RacesHeaderProps) {
return (
{/* Background Accent */}
RACE DASHBOARD
Precision tracking for upcoming sessions and live events.
);
}
function StatItem({
icon,
label,
value,
color = 'text-white'
}: {
icon: LucideIcon,
label: string,
value: number,
color?: string
}) {
return (
{label}
{value}
);
}