--- import {getPostUrlBySlug} from "@utils/url-utils"; import PostCard from "./PostCard.astro"; const {page} = Astro.props; let delay = 0 const interval = 50 ---
{page.data.map((entry: { data: { draft: boolean; title: string; tags: string[]; category: string; published: Date; image: string; description: string; }; slug: string; }) => { return ( ); })}