Navigation

Breadcrumbs

A navigational aid that displays a hierarchical path, helping users track their location and easily navigate back within a website.

Basic

Breadcrumbs display a trail of links that guide users to the current page or resource in an app, helping them understand their location and navigation path.

Loading...

Installation

npx shadcn@latest add @intentui/breadcrumbs

Composed components

When you install this component via the CLI, it automatically loads all composed components, so you don’t need to add them individually.

This component comes packed with several components to enhance functionality and provide a seamless experience.

Manual installation

npm i react-aria-components @intentui/icons

Anatomy

import { Breadcrumbs, BreadcrumbsItem } from "@/components/ui/breadcrumbs"
<Breadcrumbs>
  <BreadcrumbsItem href="#">Home</BreadcrumbsItem>
  <BreadcrumbsItem href="#">Design System</BreadcrumbsItem>
  <BreadcrumbsItem>Collections</BreadcrumbsItem>
</Breadcrumbs>

Separator

The separator appears when the breadcrumb changes. By default, it uses a chevron. You can disable it with separator="false" or switch to a slash with separator="slash".

Loading...

If you need a unique separator for each item (not recommended), set the separator prop directly:

<Breadcrumbs.Item href="#" separator="slash"/>

You can also combine breadcrumbs with menus to create a more complex navigation structure.

Loading...

Collections

You can also use breadcrumbs to navigate between collections.

Loading...

Current

The current breadcrumb indicates the active page in the breadcrumb navigation. It is automatically added as the last item and its color is updated accordingly. But you can also control the color of the current breadcrumb by passing a className prop to the Breadcrumbs.Item component.

Loading...

if you think you want to render an element inside that current breadcrumb, you can do it like this:

<Breadcrumbs.Item className="data-current:text-primary">
  {({ isCurrent }: { isCurrent: boolean }) => (
    <span className="flex items-center gap-x-2">
      Navbar
      {isCurrent && <IconChevronLgDown />}
    </span>
  )}
</Breadcrumbs.Item>
Unlock the full power of
Design Intent UI
Build modern web apps faster with 350+ blocks and polished templates crafted for professionals.
Explore