import { Image } from "react-datocms"; import clsx from "clsx"; import Link from "next/link"; export default function CoverImage({ title, responsiveImage, slug }: any) { const image = ( // eslint-disable-next-line jsx-a11y/alt-text ); return (
{slug ? ( {image} ) : ( image )}
); }