'use client' export interface GenreHeaderProps { name: string description?: string songCount?: number coverGradient?: string } export function GenreHeader({ name, description, songCount, coverGradient = 'from-purple-600 to-purple-900' }: GenreHeaderProps) { return (
{/* Background Pattern */}
{/* Content */}

Genre

{name}

{description && (

{description}

)} {songCount !== undefined && (

{songCount.toLocaleString()} {songCount === 1 ? 'song' : 'songs'}

)}
{/* Gradient Overlay */}
) }