import cn from "classnames"; import Image from "./image"; import Link from "next/link"; type CoverImageProps = { title: string; src: string; slug?: string; }; export default function CoverImage({ title, src, slug }: CoverImageProps) { const image = ( {`Cover ); return (
{slug ? ( {image} ) : ( image )}
); }