---
import type { CollectionEntry } from "astro:content";
import ArtistCard from "./ArtistCard.astro";
import Tooltip from "./Tooltip.astro";
type Props = {
artists: CollectionEntry<"artists">[];
};
const { artists } = Astro.props;
const grid = "artists";
---
{artists.map((artist) => )}