import { type Blog, getAllBlogs } from '@/lib/blogs/api'; import Link from 'next/link'; const BlogCard = ({ blog }: { blog: Blog }) => { return (
by {blog.author.name} ~ {blog.date.toLocaleDateString()}
{blog.excerpt}