--- interface Props { id: string; date: Date; title: string; description: string; } const { id, date, title, description } = Astro.props; ---
{ date.toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric", }) }

{title}

{description}