export const WEEKDAYS = [ { id: 1, name: 'Lundi' }, { id: 2, name: 'Mardi' }, { id: 3, name: 'Mercredi' }, { id: 4, name: 'Jeudi' }, { id: 5, name: 'Vendredi' }, { id: 6, name: 'Samedi' }, { id: 7, name: 'Dimanche' } ]; export const DEFAULT_EVENT = { title: '', description: '', start: '', end: '', location: '', scheduleId: 'default', color: '#10b981', recurrence: 'none', selectedDays: [], recurrenceEnd: '' }; export const VIEW_TYPES = { WEEK: 'week', MONTH: 'month', YEAR: 'year' }; export const TIME_SLOTS = Array.from({ length: 24 }, (_, i) => i);