'use client'; import React from 'react'; import { Trophy, ArrowLeft, Medal } from 'lucide-react'; import Button from '@/components/ui/Button'; import Heading from '@/components/ui/Heading'; import Image from 'next/image'; import type { DriverRankingsViewData } from '@/lib/view-data/DriverRankingsViewData'; // ============================================================================ // TYPES // ============================================================================ interface DriverRankingsTemplateProps { viewData: DriverRankingsViewData; onDriverClick?: (id: string) => void; onBackToLeaderboards?: () => void; } // ============================================================================ // MAIN TEMPLATE COMPONENT // ============================================================================ export function DriverRankingsTemplate({ viewData, onDriverClick, onBackToLeaderboards, }: DriverRankingsTemplateProps): React.ReactElement { return (
Full rankings of all drivers by performance metrics
No drivers found
There are no drivers in the system yet