--- import type { CollectionEntry } from "astro:content" import HomeLayout from "~/layouts/home.astro" import "~/styles/post.css" type Props = CollectionEntry<"posts">["data"] const { title, description, pubDate, updatedDate } = Astro.props ---