--- import type { Post } from '@lib/directusTypes'; import BlogCard from '@components/cards/BlogCard.astro'; interface Props { posts: Post[]; title: string; subTitle?: string; } const { posts, title, subTitle } = Astro.props; ---

{title}

{subTitle}
{posts.map((b) => )}