Files
gridpilot.gg/apps/website/app/profile/liveries/page.tsx
2026-01-17 15:46:55 +01:00

25 lines
591 B
TypeScript

import { ProfileLiveriesTemplate } from '@/templates/ProfileLiveriesTemplate';
export default async function ProfileLiveriesPage() {
const mockLiveries = [
{
id: '1',
carId: 'gt3-r',
carName: 'Porsche 911 GT3 R (992)',
thumbnailUrl: '',
uploadedAt: new globalThis.Date(),
isValidated: true,
},
{
id: '2',
carId: 'f3',
carName: 'Dallara F3',
thumbnailUrl: '',
uploadedAt: new globalThis.Date(),
isValidated: false,
}
];
return <ProfileLiveriesTemplate viewData={{ liveries: mockLiveries }} />;
}