'use client' export interface AlbumCardProps { id: string title: string artistName: string coverUrl?: string releaseYear?: number trackCount?: number onClick?: () => void } export function AlbumCard({ id, title, artistName, coverUrl, releaseYear, trackCount, onClick }: AlbumCardProps) { return (
{artistName}
{(releaseYear || trackCount) && (