Viewing /billing
Breadcrumbs
tsx
"use client";import { Breadcrumbs } from "@/components/godui/breadcrumbs";import { Home, Layers, Folder, FolderOpen } from "lucide-react";const items = [{ label: "Home", href: "#", icon: <Home className="size-3.5" /> },{ label: "Workspace", href: "#", icon: <Layers className="size-3.5" /> },{ label: "Settings", href: "#", icon: <Folder className="size-3.5" /> },{ label: "Billing", icon: <FolderOpen className="size-3.5" /> },];export function BreadcrumbsDemo() {return <Breadcrumbs items={items} />;}