import styles from "./styles.module.scss" import Link from 'next/link' export type ImageCardProps = { src: string, title: string, href: string } export const ImageCard = ({src, title, href}: ImageCardProps) => { return (