import clsx from 'clsx' import type { ReactNode } from 'react' interface SectionCardProps { title: string eyebrow?: string subtitle?: string actions?: ReactNode children: ReactNode className?: string } export function SectionCard({ title, eyebrow, subtitle, actions, children, className, }: SectionCardProps) { return (
{eyebrow && (

{eyebrow}

)}

{title}

{subtitle &&

{subtitle}

}
{actions &&
{actions}
}
{children}
) }