'use client'; import React from 'react'; import { Grid } from '@/ui/Grid'; import { LiveryCard } from '@/components/drivers/LiveryCard'; import { ProfileSection } from './ProfileSection'; import { ProfileLiveryViewData } from '@/lib/view-data/ProfileLiveriesViewData'; interface LiveryGalleryProps { liveries: ProfileLiveryViewData[]; action?: React.ReactNode; } export function LiveryGallery({ liveries, action }: LiveryGalleryProps) { return ( {liveries.map((livery) => ( ))} ); }