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