import dayjs from "dayjs"; export function formatDate(iso: string, format: string = "MMMM DD, YYYY") { return dayjs(iso).format(format); }