--- import PostCard from "../components/PostCard.astro"; import Layout from "../layouts/Layout.astro"; import "../styles/index.css"; import { getCollection } from "astro:content"; const posts = (await getCollection("blog")).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); --- {posts.map((post) => )}