export const formatDate = (date: string) => { return new Date(date).toLocaleDateString('en', { year: 'numeric', month: 'long', day: 'numeric' }) }