"use client"; import { Card } from "@/components/ui/Card"; interface AboutSectionProps { description: string; } export function AboutSection({ description }: AboutSectionProps) { // Skip if description is just narrator info if (description.match(/^(Read by|Narrated by):/i)) { return null; } return (

About

); }