File size: 604 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
import DotCmsImage from "./dotcms-image";
import Link from "next/link";
import cn from "classnames";

export default function CoverImage(props) {
  const image = (
    <DotCmsImage
      {...props}
      alt={`Cover Image for ${props.title}`}
      className={cn("shadow-small", {
        "hover:shadow-medium transition-shadow duration-200": props.slug,
      })}
    />
  );

  return (
    <div className="-mx-5 sm:mx-0">
      {props.slug ? (
        <Link href={`/posts/${props.slug}`} aria-label={props.title}>
          {image}
        </Link>
      ) : (
        image
      )}
    </div>
  );
}