import { ReactNode } from "react"; import { cn } from "@/app/_lib/utils"; interface SectionProps { title: string; description?: string; children: ReactNode; className?: string; titleClassName?: string; descriptionClassName?: string; contentClassName?: string; } export function Section({ title, description, children, className, titleClassName, descriptionClassName, contentClassName }: SectionProps) { return (
{description}
}