import { LuArrowRight, LuClock } from "@preact-icons/lu"; import { Post } from "../lib/posts.ts"; export default function PostCard(props: { post: Post }) { const { post } = props; return (

{post.title}

{post.blurb}

{post.publishedAt!.toLocaleDateString("en-us", { month: "long", day: "numeric", year: "numeric", })}
); }