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

{title}

{excerpt}

); }; export default HeroPost;