export default function Card({ title, description, image, gameUrl, buttonText, }) { return (
{title
{title}

{description}

{buttonText ? buttonText : "Play Now"}
); }