import type { ReactNode } from 'react'; export function PageHeader(props: { eyebrow: string; title: string; description?: string; action?: ReactNode }) { return (

{props.eyebrow}

{props.title}

{props.description &&

{props.description}

}
{props.action &&
{props.action}
}
); }