import type { ReactNode } from "react"; interface PageHeaderProps { title: string; subtitle?: ReactNode; /** Primary action slot, right-aligned. */ actions?: ReactNode; } /** Standard page title block with an action slot. */ export function PageHeader({ title, subtitle, actions }: PageHeaderProps) { return (