Breadcrumb

How to use

Import Breadcrumb and pass an array of items with label and optional href. Copy the examples below.

1. Import

tsx
import { Breadcrumb } from "@/app/components/ui";

2. Basic usage

tsx
<Breadcrumb
  items={[
    { label: "Home", href: "/" },
    { label: "Dashboard", href: "/dashboard" },
    { label: "Current" },
  ]}
/>