"use client" import { cn } from "@/lib/utils" interface ContentSectionProps { title?: string; children: React.ReactNode; className?: string; fullWidth?: boolean; decorative?: boolean; } export function ContentSection({ title, children, className, fullWidth = false, decorative = true }: ContentSectionProps) { return (
{decorative && (
)}
{title && (
{title}
)}
{children}
) }