wip
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
import { useState } from 'react';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import DriverCard from '@/components/alpha/DriverCard';
|
||||
import RankBadge from '@/components/alpha/RankBadge';
|
||||
import DriverCard from '@/components/drivers/DriverCard';
|
||||
import RankBadge from '@/components/drivers/RankBadge';
|
||||
import Input from '@/components/ui/Input';
|
||||
import Card from '@/components/ui/Card';
|
||||
|
||||
// Mock data
|
||||
// Mock data (fictional demo drivers only)
|
||||
const MOCK_DRIVERS = [
|
||||
{
|
||||
id: '1',
|
||||
name: 'Max Verstappen',
|
||||
name: 'Alex Vermeer',
|
||||
rating: 3245,
|
||||
skillLevel: 'pro' as const,
|
||||
nationality: 'Netherlands',
|
||||
@@ -23,7 +23,7 @@ const MOCK_DRIVERS = [
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
name: 'Lewis Hamilton',
|
||||
name: 'Liam Hartmann',
|
||||
rating: 3198,
|
||||
skillLevel: 'pro' as const,
|
||||
nationality: 'United Kingdom',
|
||||
|
||||
Reference in New Issue
Block a user