Breadcrumb
Hierarchical navigation trail for showing the current page within a larger catalog, content tree, or account area.
Best for
Import
import { Breadcrumb } from "@enadhq/enad-react-sdk/client/ui-resolver"When to use it
Use Breadcrumb when the page sits inside a catalog or content hierarchy and visitors need a visible trail back to parent levels. It is standard on product detail pages, category listings, account sub-pages, and any view deeper than two levels.
If the page structure is flat (homepage, landing pages, single-level settings), breadcrumbs add noise without value.
Slot strategy
Breadcrumb is a list-based composition:
Breadcrumbis the root<nav>element with anaria-labelfor screen readers.BreadcrumbListis the ordered list (<ol>) that holds the items.BreadcrumbItemwraps each segment in the trail.BreadcrumbLinkis a clickable ancestor link. Use standardhreffor navigation.BreadcrumbPagemarks the current page. It renders as plain text witharia-current="page"instead of a link.BreadcrumbSeparatorrenders a visual divider between items (defaults to a slash or chevron icon).BreadcrumbEllipsiscollapses middle segments into a "..." indicator for deep paths.
Behavior and theming guidance
The component renders semantic HTML (nav > ol > li) with proper ARIA attributes, so screen readers announce it as a navigation landmark. Keep the trail short: show the root, one or two relevant ancestors, and the current page. Use BreadcrumbEllipsis when the full path would exceed four or five visible segments.
Links use muted foreground colors by default and the current page uses the regular foreground color, which creates a natural visual hierarchy without extra styling. The separator inherits the muted color to stay unobtrusive.
Examples
Live examples you can edit directly in the sandbox.
Standard path
A simple three-level trail. The last item uses BreadcrumbPage to mark it as the current location instead of a link.
Deep path with ellipsis
For deeply nested catalogs, collapse middle segments with BreadcrumbEllipsis to keep the trail compact while preserving the first and last levels.
Component Sets
Preview the first example across the available component-set presets to compare tone, spacing, and structural defaults.