import React from 'react';
import { Flag, CalendarDays, Clock, Zap, Trophy, LucideIcon } from 'lucide-react';
import { Heading } from '@/ui/Heading';
import { Text } from '@/ui/Text';
import { Hero } from '@/ui/Hero';
import { Stack } from '@/ui/Stack';
import { Box } from '@/ui/Box';
interface RacePageHeaderProps {
totalCount: number;
scheduledCount: number;
runningCount: number;
completedCount: number;
}
export function RacePageHeader({
totalCount,
scheduledCount,
runningCount,
completedCount,
}: RacePageHeaderProps) {
return (
Race Calendar
Track upcoming races, view live events, and explore results across all your leagues.
{/* Quick Stats */}
);
}
function StatBox({ icon: Icon, label, value, color }: { icon: LucideIcon, label: string, value: number, color?: string }) {
return (
{label}
{value}
);
}