export const formatDate = (date: string, locales = "en-US") => { const options: Intl.DateTimeFormatOptions = { year: "numeric", month: "long", day: "numeric", }; return new Date(date).toLocaleDateString(locales, options); };