"use client"; import { cn } from "@/lib/utils"; import type { CardMeta } from "@/lib/cards"; interface InfoCardProps { meta: CardMeta; selected: boolean; onClick: () => void; } export function InfoCard({ meta, selected, onClick }: InfoCardProps) { return ( ); }