export function Card( { link, title, image }: { link?: string; title?: string; image?: string }, ) { return (
{/* Recipe Card content */}
{title}
); }