Navigation breadcrumb with separators.
import { Breadcrumb } from "@/components/ui";<Breadcrumb
items={[
{ label: "Home", href: "/" },
{ label: "Products", href: "/products" },
{ label: "Electronics", href: "/products/electronics" },
{ label: "Phones" },
]}
/>Use different separators
<Breadcrumb items={[ { label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "Details" }, ]} separator=">"/>Collapse middle items
<Breadcrumb items={[ { label: "Home", href: "/" }, { label: "Category", href: "/category" }, { label: "Subcategory", href: "/category/sub" }, { label: "Products", href: "/category/sub/products" }, { label: "Product Details" }, ]} maxItems={3}/>Configure your app with the features you need and download production-ready code.
Start Configuring