🛠️ VitNode is still in development! You can try it out, but it is not recommended to use it now in production.
🖌️ Themes
Components
Breadcrumbs

Breadcrumbs

This component is used to display a list of links to the current page, and its parent pages.

Usage

import { Breadcrumbs } from "@/components/ui/breadcrumbs";
 
<Breadcrumbs
  items={[
    {
      id: 1,
      text: [],
      url: "/"
    }
  ]}
/>;

Props

NameTypeDefaultDescription
items{id: number; text: string[]; url: string}[][]List of links.