import { component$ } from "@builder.io/qwik" import { cn } from "@nestri/ui/design" import { ImageLoader } from "@nestri/ui/image" type Game = { appid: string name: string release_date: number compatibility: string teams: number } type Props = { game: Game; class?: string; } export const GameCard = component$(({ game, class: className }: Props) => { return (