14 lines
350 B
Text
14 lines
350 B
Text
---
|
|
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
|
|
---
|
|
|
|
<HomeLayout>
|
|
<article class="prose mt-10 dark:prose-invert">
|
|
<slot />
|
|
</article>
|
|
</HomeLayout>
|