export const formatDateTime = (date: string) => { const _date = new Date(date); return _date.toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric", hour: "2-digit", minute: "2-digit", second: "2-digit", hour12: true, }); };