import Image from 'next/image' import Link from '@/components/Link' const Card = ({ title, description, imgSrc, href }) => (
{href ? ( {title} ) : ( {title} )}

{href ? ( {title} ) : ( title )}

{description}

{href && ( Learn more → )}
) export default Card