import Link from 'next/link'; import { Button } from '@/ui/Button'; import { Card } from '@/ui/Card'; import { Container } from '@/ui/Container'; import { Heading } from '@/ui/Heading'; import { Grid } from '@/ui/Grid'; import { routes } from '@/lib/routing/RouteConfig'; import { LiveryCard } from '@/ui/LiveryCard'; export default async function ProfileLiveriesPage() { const mockLiveries = [ { id: '1', carId: 'gt3-r', carName: 'Porsche 911 GT3 R (992)', thumbnailUrl: '', uploadedAt: new Date(), isValidated: true, }, { id: '2', carId: 'f3', carName: 'Dallara F3', thumbnailUrl: '', uploadedAt: new Date(), isValidated: false, } ]; return (
My Liveries

Manage your custom car liveries

{mockLiveries.map((livery) => ( ))}
); }