import type { Game } from '../types' const DEFAULT_COLOR = '#6366f1' // indigo-500 interface GameCardProps { game: Game selected: boolean onSelect: (game: Game) => void } export function GameCard({ game, selected, onSelect }: GameCardProps) { const backgroundColor = game.color ?? DEFAULT_COLOR return ( ) }