// The centered module title in the top bar. Every non-feed module renders through this one // component, so its styling lives in a single place. Design element (user-picked): a tracked // small-caps "eyebrow" with a leading accent dot. export default function PageTitle({ label }: { label: string }) { return ( {label} ); }