"use client"; interface DescriptionPlayerProps { id: string; title?: string; content: string; } export default function DescriptionPlayer({ id, title, content }: DescriptionPlayerProps) { return (

{title || "Overview"}

{/* We can use a markdown parser here later if desired, for now simple multiline text */}
{content}
); }