'use client' import { useState } from 'react' import { ChevronDown, ChevronUp } from 'lucide-react' interface ExpandableSectionProps { title: string content: string } export function ExpandableSection({ title, content }: ExpandableSectionProps) { const [isExpanded, setIsExpanded] = useState(false) return (
{isExpanded && (

{content}

)}
) }