import Link from "next/link"; import Avatar from "./avatar"; import DateComponent from "./date"; import CoverImage from "./cover-image"; function PostPreview({ title, coverImage, date, excerpt, author, slug, }: { title: string; coverImage: any; date: string; excerpt: string; author: any; slug: string; }) { return (
{excerpt}
{author &&