'use client'; import React from 'react'; import { Award, Trophy, Users } from 'lucide-react'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Heading } from '@/ui/Heading'; import { Button } from '@/ui/Button'; import { Surface } from '@/ui/Surface'; import { Icon } from '@/ui/Icon'; import { DecorativeBlur } from '@/ui/DecorativeBlur'; interface LeaderboardsHeroProps { onNavigateToDrivers: () => void; onNavigateToTeams: () => void; } export function LeaderboardsHero({ onNavigateToDrivers, onNavigateToTeams }: LeaderboardsHeroProps) { return ( Leaderboards Where champions rise and legends are made Track the best drivers and teams across all competitions. Every race counts. Every position matters. Who will claim the throne? ); }