import { Flag, Star, Trophy, Users } from 'lucide-react'; import { Avatar } from '../../ui/Avatar'; import { Badge } from '../../ui/Badge'; import { Box } from '../../ui/Box'; import { Heading } from '../../ui/Heading'; import { Icon } from '../../ui/Icon'; import { ProfileHero, ProfileAvatar, ProfileStatsGroup, ProfileStat } from '../../ui/ProfileHero'; import { BadgeGroup } from '../../ui/BadgeGroup'; import { QuickStatCard, QuickStatItem } from '../../ui/QuickStatCard'; import { Stack } from '../../ui/Stack'; import React from 'react'; interface DashboardHeroProps { driverName: string; avatarUrl?: string | null; rating: number; rank: number; totalRaces: number; winRate: number; } export function DashboardHero({ driverName, avatarUrl, rating, rank, totalRaces, winRate, }: DashboardHeroProps) { return ( {/* Avatar Section */} } > {/* Info Section */} {driverName} {winRate}% Win Rate Pro License Team Redline {/* Quick Stats */} ); }