import type { ReactNode } from 'react' export function PageHeader({ title, description, actions, }: { title: ReactNode description?: ReactNode actions?: ReactNode }) { return ( // Density-first (NAMGROUP): compact one-line header, text-[15px] semibold, // tighter bottom rule. Toolbar/actions sit inline on the right.
{/* Brand accent bar — nhận diện #1F7DC1 per-page (mirror fe-user S58) */}

{title}

{description &&

{description}

}
{actions &&
{actions}
}
) }