File size: 781 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import Avatar from "@components/avatar";
import CoverImage from "@components/cover-image";
import PostTitle from "@components/post-title";
export default function PostHeader({ title, coverImage, author }) {
return (
<>
<PostTitle>{title}</PostTitle>
<div className="hidden md:block md:mb-12">
{author.length ? (
<Avatar
name={`${author[0].firstName} ${author[0].lastName}`}
picture={author[0].profilePhoto}
/>
) : null}
</div>
<div className="mb-8 md:mb-16 sm:mx-0">
<CoverImage
title={title}
width={2000}
height={1000}
src={coverImage.idPath}
objectFit="cover"
layout={"intrinsic"}
/>
</div>
</>
);
}
|