import { ReactNode } from 'react'; interface PageHeaderProps { title: string; description?: string; actions?: ReactNode; } /** * Consistent page header for dashboard pages. * Mobile: actions appear above title (right-aligned). * Desktop: title on the left, actions on the right. */ export function PageHeader({ title, description, actions }: PageHeaderProps) { return (
{description}
)}