'use client'; import type { ReactNode } from 'react'; /** * Single editorial page header: accent pill + serif title (base + italic accent) * + subtitle. Every dashboard surface uses this so the product speaks one voice. */ export function PageHeader({ pill, titleBase, titleAccent, subtitle, action, className = '', }: { pill: string; titleBase: string; titleAccent: string; subtitle?: string; action?: ReactNode; className?: string; }) { return (
{subtitle}
)}