import { Separator } from '@/components/ui/separator'; interface ContentSectionProps { title: string; desc: string; children: React.JSX.Element; } export default function ContentSection({ title, desc, children }: ContentSectionProps) { return (
{desc}