import { routes } from '@/lib/routing/RouteConfig'; import { Button } from '@/ui/Button'; import { DashboardHero as UiDashboardHero } from '@/ui/DashboardHero'; import { Icon } from '@/ui/Icon'; import { Link } from '@/ui/Link'; import { StatBox } from '@/ui/StatBox'; import { Flag, Medal, Target, Trophy, User, Users } from 'lucide-react'; interface DashboardHeroProps { currentDriver: { name: string; avatarUrl: string; country: string; rating: string | number; rank: string | number; totalRaces: string | number; wins: string | number; podiums: string | number; consistency: string; }; activeLeaguesCount: string | number; } export function DashboardHero({ currentDriver, activeLeaguesCount }: DashboardHeroProps) { return ( } stats={ <> } /> ); }