import Avatar from "../components/avatar"; import DateFormatter from "../components/date-formatter"; import CoverImage from "../components/cover-image"; import Link from "next/link"; type HeroPostProps = { title: string; coverImage: string; date: string | null; excerpt: string; author: { name: string; picture: string; }; slug: string; }; export default function HeroPost({ title, coverImage, date, excerpt, author, slug, }: HeroPostProps) { return (

{title}

{excerpt}

); }