import { Link } from 'react-router-dom'; import { format } from 'date-fns'; import type { PostSummary } from '../types'; export default function PostCard({ post }: { post: PostSummary }) { return (
{post.coverImage && (
{post.title}
)}

{post.title}

{post.author}

{post.excerpt}

{post.tags.map((tag) => ( {tag} ))}
Read more
); }