'use client'; import { Button } from '@/ui/Button'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Section } from '@/ui/Section'; import { Container } from '@/ui/Container'; import { Icon } from '@/ui/Icon'; import { MetricCard } from '@/ui/MetricCard'; import { Trophy, Users, Zap, Flag } from 'lucide-react'; import { Grid } from '@/ui/Grid'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; interface DriversDirectoryHeaderProps { totalDriversLabel: string; activeDriversLabel: string; totalWinsLabel: string; totalRacesLabel: string; onViewLeaderboard: () => void; } export function DriversDirectoryHeader({ totalDriversLabel, activeDriversLabel, totalWinsLabel, totalRacesLabel, onViewLeaderboard, }: DriversDirectoryHeaderProps) { return (
Driver Directory The official registry of GridPilot competitors. Tracking performance, reliability, and championship progress across all sanctioned events.
); }