--- import { format, add } from "date-fns"; interface Props { date: String; } const { date } = Astro.props; --- {format(add(new Date(date), { hours: 6 }), "MMM do, y")}