--- import PostPreview from "./PostPreview.astro"; import type { Settings, Post } from "@matthiesenxyz/astro-ghostcms/api"; export type Props = { posts: Post[]; settings: Settings; isHome?: boolean; }; const { posts, settings, isHome = false } = Astro.props as Props; ---