"use client" import Image from "next/image" import { cn } from "@/lib/utils" interface GameCardProps { id: string title: string image: string provider?: string } export function GameCard({ id, title, image, provider }: GameCardProps) { return (
{title}

{title}

{provider && (

{provider}

)}
) }