import { Flag, Star, Trophy, Users } from 'lucide-react'; import { Avatar } from './Avatar'; import { Badge } from './Badge'; import { Box } from './Box'; import { Heading } from './Heading'; import { Icon } from './Icon'; import { Stack } from './Stack'; import { Text } from './Text'; interface DashboardHeroProps { driverName: string; avatarUrl?: string | null; rating: number; rank: number; totalRaces: number; winRate: number; className?: string; } export function DashboardHero({ driverName, avatarUrl, rating, rank, totalRaces, winRate, className = '', }: DashboardHeroProps) { return ( {/* Background Glow */} {/* Avatar Section */} {/* Info Section */} {driverName} Rating {rating} Rank #{rank} Starts {totalRaces} {winRate}% Win Rate Pro License Team Redline {/* Quick Stats */} 12 Podiums 4 Wins ); }