import Image from 'next/image'; export function GridTileImage({ title, ...props }: { title?: string; } & React.ComponentProps) { return ( <> {props.src ? : null} {title ? (

{title}

) : null} ); }