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
| Prop | Type | Default | Description |
|---|---|---|---|
title | string | — | Page title |
description | string | — | Optional description text |
breadcrumbs | PageHeaderBreadcrumb[] | — | Optional breadcrumb trail |
actions | React.ReactNode | — | Optional action buttons slot |
className | string | — | Additional CSS classes |
PageHeaderBreadcrumb
| Field | Type | Default | Description |
|---|---|---|---|
label | string | — | Breadcrumb text |
href | string | — | Optional link (last item is plain text) |