Lambchop
Layout

PageHeader

Page title with breadcrumbs, description, and action slots.

import { PageHeader } from "lambchop";

Live Demo

January 2026 Revenue

Revenue breakdown across theneedledrop.com, noecho.net, melodicmag.com and 6 other sites.

Usage

import { PageHeader } from "lambchop";

<PageHeader
  title="January 2026 Revenue"
  description="Revenue breakdown across all sites."
  breadcrumbs={[
    { label: "Dashboard", href: "/" },
    { label: "Revenue", href: "/revenue" },
    { label: "January 2026" },
  ]}
  actions={<button>Export CSV</button>}
/>

Props

PropTypeDefaultDescription
titlestringPage title
descriptionstringOptional description text
breadcrumbsPageHeaderBreadcrumb[]Optional breadcrumb trail
actionsReact.ReactNodeOptional action buttons slot
classNamestringAdditional CSS classes

PageHeaderBreadcrumb

FieldTypeDefaultDescription
labelstringBreadcrumb text
hrefstringOptional link (last item is plain text)