--- import WidgetLayout from "./WidgetLayout.astro"; import ButtonLink from "../control/ButtonLink.astro"; import {getPostUrlBySlug, getSortedPosts} from "../../utils/content-utils"; let posts = await getSortedPosts() const LIMIT = 5; posts = posts.slice(0, LIMIT) // console.log(posts) --- {posts.map(post => {post.data.title} )}