--- import { formatInTimeZone } from "date-fns-tz"; interface Props { title: String; date: String; } const { title, date } = Astro.props; ---

{title}

{`🗓️ ${formatInTimeZone(new Date(date), "America/New_York", "MMM do, y")}`}