import type { ReactNode } from 'react' interface AuthHeaderProps { title: string description: ReactNode } /** * The centered heading + subcopy block shared by every auth page and status * page. One source of truth for auth heading typography (light tokens, normal * weight, no bespoke tracking — aligned with the landing scale, sized down for * the single-column form). */ export function AuthHeader({ title, description }: AuthHeaderProps) { return (

{title}

{description}

) }