--- import { getCollection } from 'astro:content'; import BaseLayout from '@/layouts/BaseLayout.astro'; import Heading from '@/components/ui/Heading.astro'; const allBlogposts = await getCollection('blog'); ---
Blog

Here are some blogposts, they are located in the repository as mdx files.


{ allBlogposts.map((post) => (

{post.data.title}

{post.data.description}

Read more
)) }