--- import type { CollectionEntry } from "astro:content"; interface Props { posts: CollectionEntry<"posts">[]; } const { posts } = Astro.props; const fmtDate = (d: Date) => d.toLocaleDateString("en-US", { year: "numeric", month: "short", day: "numeric", }); ---