shellphone.app/app/blog/components/cover-image.tsx

30 lines
617 B
TypeScript
Raw Normal View History

2021-08-27 16:08:38 +00:00
import { Image } from "react-datocms";
import clsx from "clsx";
import Link from "next/link";
export default function CoverImage({ title, responsiveImage, slug }: any) {
const image = (
2021-08-29 23:13:06 +00:00
// eslint-disable-next-line jsx-a11y/alt-text
2021-08-27 16:08:38 +00:00
<Image
data={{
...responsiveImage,
alt: `Cover Image for ${title}`,
}}
className={clsx("shadow-small", {
"hover:shadow-medium transition-shadow duration-200": slug,
})}
/>
);
return (
<div className="sm:mx-0">
{slug ? (
<Link href={`/posts/${slug}`}>
<a aria-label={title}>{image}</a>
</Link>
) : (
image
)}
</div>
);
}