PageHeader

PageHeader determines the top-level headings of a UI.

Page navigation navigation

React
readyReviewed for a11y

The PageHeader arranges elements that apply context and provide navigation for the current page.

The elements within PageHeader are rearranged and displayed accordingly depending on the viewport size and context of the page.

React examples

Title only

With a description

With actions

With UnderlineNav in the navigation slot

With leading and trailing visuals

Leading visual guidelines

Trailing visual guidelines

With leading and trailing actions

Leading action guidelines

Trailing action guidelines

More examples

The previous examples are a small subset of the full capabilities of the PageHeader component. For more in-depth examples that demonstrate responsive behavior and show realistc use-cases for GitHub, see the PageHeader Storybook stories.

Props

NameDefaultDescription
aria-label
string | undefined

A unique label for the rendered landmark

className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden. The component can be hidden for all viewport widths, or specified viewport widths. Some children have a default value for this prop:

  • PageHeader.ContextArea, PageHeader.ContextAreaActions, PageHeader.ContextBar, and PageHeader.ParentLink are hidden on regular and wide viewports by default.
    • PageHeader.LeadingAction, and PageHeader.TrailingAction are hidden on narrow viewports by default.
role
AriaRole

The ARIA role to assign to the top-level node of this component.

sx
SystemStyleObject
as
"div"
React.ElementType
hasBorder
boolean

Whether to render a border below the PageHeader. This border will NOT be rendered if the PageHeader has a PageHeader.Navigation child that is not hidden at the current breakpoint.

PageHeader.ContextArea

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject
NameDefaultDescription
aria-label
string | undefined

A unique label for the rendered landmark

className
string | undefined

CSS string

href
string

The URL to link to.

hidden
`{ narrow: false regular: true wide: true }`
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the parent link is hidden.

sx
SystemStyleObject

PageHeader.ContextBar

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.ContextAreaActions

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.TitleArea

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

variant
medium
| 'subtitle' | 'medium' | 'large' | { narrow?: | 'subtitle' | 'medium' | 'large' regular?: | 'subtitle' | 'medium' | 'large' wide?: | 'subtitle' | 'medium' | 'large' }

Default title (medium) is the most common page title size. Use for static titles in most situations. Large variant should be used for user-generated content such as issues, pull requests, or discussions. Subtitle variant can be used when a PageHeader.Title is already present in the page, such as in a SplitPageLayout.

sx
SystemStyleObject

PageHeader.LeadingAction

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.LeadingVisual

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.Title

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject
as
"h2"
React.ElementType

PageHeader.TrailingVisual

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.TrailingAction

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.Actions

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.Breadcrumbs

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.Description

NameDefaultDescription
className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject

PageHeader.Navigation

NameDefaultDescription
aria-label
string

The aria-label attribute for the navigaton component when it is rendered as a "nav" element.

aria-labelledby
string

The aria-labelledby attribute for the navigaton component when it is rendered as a "nav" element.

as
"div"
div | nav

The HTML element used to render the navigation.

className
string | undefined

CSS string

hidden
false
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }

Whether the content is hidden.

sx
SystemStyleObject