'use client'; import { DashboardHero as UiDashboardHero } from '@/components/dashboard/DashboardHero'; import { routes } from '@/lib/routing/RouteConfig'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; import { Link } from '@/ui/Link'; import { Stack } from '@/ui/Stack'; import { StatGrid } from '@/ui/StatGrid'; import { Flag, Medal, Target, Trophy, User, Users } from 'lucide-react'; import React from 'react'; interface DashboardHeroProps { currentDriver: { name: string; avatarUrl: string; country: string; rating: number; rank: number; totalRaces: number; wins: number; podiums: number; consistency: string; }; activeLeaguesCount: number; } export function DashboardHero({ currentDriver, activeLeaguesCount }: DashboardHeroProps) { return ( ); }