import React from 'react'; import { Flag, CalendarDays, Clock, Zap, Trophy } 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'; import { Icon } from '@/ui/Icon'; import { Grid } from '@/ui/Grid'; import { StatBox } from '@/ui/StatBox'; 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 */} ); }