mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 16:03:21 +00:00
30 lines
844 B
JavaScript
30 lines
844 B
JavaScript
export const mockSchedules = [
|
|
{ id: 'default', name: 'Planning principal', color: '#10b981' },
|
|
{ id: 'secondary', name: 'Planning secondaire', color: '#3b82f6' },
|
|
{ id: 'special', name: 'Événements spéciaux', color: '#ef4444' },
|
|
{ id: 'exam', name: 'Planning examens', color: '#f59e0b' },
|
|
];
|
|
|
|
export const mockEvents = [
|
|
{
|
|
id: 'event-1',
|
|
title: 'Cours de Mathématiques',
|
|
description: 'Cours de mathématiques avancées',
|
|
start: '2024-02-20T08:00:00',
|
|
end: '2024-02-20T10:00:00',
|
|
planning: 'default',
|
|
location: 'Salle A101',
|
|
color: '#10b981',
|
|
},
|
|
{
|
|
id: 'event-2',
|
|
title: 'Examen Physique',
|
|
description: 'Examen final de physique',
|
|
start: '2024-02-21T14:00:00',
|
|
end: '2024-02-21T16:00:00',
|
|
planning: 'exam',
|
|
location: 'Amphithéâtre B',
|
|
color: '#f59e0b',
|
|
},
|
|
];
|