interface ArtistBioProps { bio: string; } export function ArtistBio({ bio }: ArtistBioProps) { if (!bio) return null; return (

About

); }