export function shortDateTime(date: string | number | Date) { return new Date(date).toLocaleString("en-US", { year: "numeric", month: "short", day: "numeric", hour: "numeric", minute: "numeric", second: "numeric", }) }