25 lines
591 B
TypeScript
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 }} />;
|
|
}
|