import * as React from "react" import { motion } from "framer-motion" import { cn } from "@/lib/utils" interface SectionProps { id: string className?: string containerClassName?: string eyebrow?: string title?: string description?: string children: React.ReactNode } export function Section({ id, className, containerClassName, eyebrow, title, description, children, }: SectionProps) { return (
{(eyebrow || title || description) && ( {eyebrow && ( {eyebrow} )} {title && (

{title}

)} {description && (

{description}

)}
)} {children}
) }