export function isDateToday(date: Date): boolean { const today = new Date(); today.setHours(0, 0, 0, 0); return date.getTime() > today.getTime(); }