--- import type { AstroInstance } from "astro"; export interface Props { posts: AstroInstance[]; title: string; } const { title, posts } = Astro.props; const postUrls: string[] = posts.map((post) => post.url || ""); ---