// Format date to a string function formatDate(date: Date): string { const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit', timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone }; return new Date(date).toLocaleDateString(undefined, options); } export { formatDate };