--- import type { CollectionEntry } from "astro:content"; import PageBase from "./PageBase.astro"; import Nav from "../components/Nav.astro"; type Props = Pick, "id" | "data">; const { data: { title, date, lastmod }, } = Astro.props; ---