Navbar
A horizontal navigation bar component with flexible left and right sections for building site headers and navigation.
Usage
Component Structure
The Navbar component uses a composite pattern, providing modular sub-components for flexible navigation layouts:
Navbar- Root container that wraps the navigation barNavbar.Start- Left section container for brand, logo, or primary navigationNavbar.End- Right section container for actions, search, or secondary navigation
Navbar Props
| Prop | Type | Default |
|---|---|---|
sticky | boolean | false |
aria-label | string | - |
aria-labelledby | string | - |
Navbar.Start Props
The start section is a container component that accepts all div props. It's commonly used for brand logos, primary navigation links, or page titles.
| Prop | Type | Default |
|---|---|---|
aria-label | string | - |
Navbar.End Props
The end section is a container component that accepts all div props. It's commonly used for search inputs, action buttons, user menus, or secondary navigation.
| Prop | Type | Default |
|---|---|---|
aria-label | string | - |
Examples
Sticky Navigation
The Navbar can be made sticky to remain visible at the top of the viewport when scrolling.
Section Layouts
You can use either or both sections depending on your needs. The sections automatically position themselves with proper spacing.
Accessibility
The Navbar supports custom ARIA labels for better screen reader support. You can provide descriptive labels for the entire navbar or individual sections.
Accessibility
The Navbar implements the following accessibility features:
-
Proper ARIA roles and attributes
role="navigation"for the main navbarrole="group"for Start and End sections whenaria-labelis provided- Customizable
aria-labelandaria-labelledbysupport
-
Semantic HTML
- Uses
<nav>element for proper navigation landmark - Maintains proper heading hierarchy when using
aria-labelledby
- Uses
-
Screen reader support
- Meaningful labels for all sections
- Clear structure for assistive technologies
- Support for linking to visible headings via
aria-labelledby