Header

The Header component exposes a way to build visually consistent hierarchy into apps that look and feel like part of the Contentful UI.

Note that the Header is not meant to be used when building navigation, for this case you will be better served by Navbar.

Import

import { Header } from '@contentful/f36-components';
// or
import { Header } from '@contentful/f36-header';

Examples

Empty Header with title (variant name)

function HeaderExample() {
return <Header title="Content Types" />;
}

With breadcrumbs & back button

function HeaderExample() {
return (
<Header
title="Article"
withBackButton={true}
backButtonProps={{ onClick: () => console.log('back button click') }}
breadcrumbs={[
{
content: 'Content Types',
url: '#',
onClick: () => console.log('Content Types clicked'),
},
]}
/>
);
}

With actions

function HeaderExample() {
return (
<Header
title="Article"
actions={
<Flex
alignItems="center"
gap={tokens.spacingS}
justifyContent="flex-end"
>
<Button variant="secondary" size="small">
Suggest Alternatives
</Button>
<Button variant="positive" size="small">
Save
</Button>
</Flex>
}
/>
);
}

With filters

function HeaderExample() {
return (
<Header
title="Entries"
filters={<TextInput size="small" placeholder="Search" />}
/>
);
}

Props (API reference)

Open in Storybook

Name

Type

Default

actions
ReactElement<any, string | JSXElementConstructor<any>>
ReactElement<any, string | JSXElementConstructor<any>>[]

Optional JSX children to display as complementary actions (e.g. buttons) related to the current page/route.

as
HTML Tag or React Component (e.g. div, span, etc)

backButtonProps
BackButtonProps

breadcrumbs
Breadcrumb[]

An (optional) list of navigable links to prepend to the current title.

filters
ReactElement<any, string | JSXElementConstructor<any>>

An (optional) element displayed in the center of the header, typically used to render refinement/search UI.

metadata
string
number
false
true
{}
ReactElement<any, string | JSXElementConstructor<any>>
ReactNodeArray
ReactPortal

title
string
ReactElement<any, string | JSXElementConstructor<any>>

The title of the element this header pertains to.

withBackButton
false
true

If `true`, renders a leading back button within the header.