PageHeader

A pure HTML+CSS page header component with responsive flex layout. Supports title, description, optional breadcrumb, and an action slot. Available in three sizes.

Layoutheaderpagetitlebreadcrumblayout

Basic

import { PageHeader } from '@primstack/ui/page-header'

<PageHeader title="Settings" description="Manage your account" />

With action

<PageHeader
  title="Users"
  description="Manage team members"
  action={<Button>Invite</Button>}
/>

Related Components