--- import type { Post } from '@lib/directusTypes'; import BlogCard from '@components/blog/BlogCard.astro'; interface Props { posts: Post[]; } const { posts } = Astro.props; ---

Older Articles

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