"use client"; import Link from "next/link"; import Image from "next/image"; import { useCardImage, type ArtistCardProps } from "./ArtistCard"; export function ArtistCardCompact({ name, subtitle, image, href, label = "Artist", className = "", }: ArtistCardProps) { const { src, onError } = useCardImage(image); return (
{name

{name ?? `Untitled ${label.toLowerCase()}`}

{subtitle && (

{subtitle}

)}
); }