import React from 'react'; import { cn } from '@/lib/utils'; export interface SectionCardProps extends React.HTMLAttributes { as?: 'section' | 'div'; } export function SectionCard({ className, as: Tag = 'section', ...props }: SectionCardProps) { return ( ); } interface SectionHeaderProps { eyebrow?: string; title: string; description?: string; endSlot?: React.ReactNode; className?: string; } export function SectionHeader({ eyebrow, title, description, endSlot, className }: SectionHeaderProps) { return (
{eyebrow ? (

{eyebrow}

) : null}

{title}

{description ?

{description}

: null}
{endSlot}
); }