import type { ReactNode } from 'react'; interface WorkspaceHeroProps { eyebrow: string; title: string; description: string; action?: ReactNode; scope?: ReactNode; controls?: ReactNode; className?: string; } export function WorkspaceHero({ eyebrow, title, description, action, scope, controls, className = '', }: WorkspaceHeroProps) { return (

{eyebrow}

{title}

{action}

{description}

{scope ?
{scope}
: null} {controls ?
{controls}
: null}
); }