import Avatar from "@/components/blog/avatar"; import CoverImage from "@/components/blog/cover-image"; import { type Author } from "@/interfaces/author"; import Link from "next/link"; import DateFormatter from "./date-formatter"; type Props = { title: string; coverImage: string; date: string; excerpt: string; author: Author; slug: string; }; export function HeroPost({ title, coverImage, date, excerpt, author, slug, }: Props) { return (

{title}

{excerpt}

); }