import Avatar from "./avatar";
import CoverImage from "./cover-image";
import DateFormatter from "./date-formatter";
import { PostTitle } from "@/components/blog/post-title";
import { type Author } from "@/interfaces/author";
type Props = {
title: string;
coverImage: string;
date: string;
author: Author;
};
export function PostHeader({ title, coverImage, date, author }: Props) {
return (
<>