diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index 9be3872..75c505c 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -1,8 +1,8 @@ --- -import type { CollectionEntry } from 'astro:content'; -import { Icon } from 'astro-icon/components'; +import type { CollectionEntry } from "astro:content"; +import { Icon } from "astro-icon/components"; export interface Props { - post: CollectionEntry<'posts'>; + post: CollectionEntry<"posts">; } const { post } = Astro.props; @@ -10,46 +10,56 @@ const { title, description: blurb, pubDate } = post.data; const { slug } = post; --- -
- {blurb || 'No description available.'} -
++ {blurb || "No description available."} +
-