import Link from "next/link"; import { ChevronRight } from "lucide-react"; export interface BreadcrumbItem { label: string; href?: string; } interface Props { items: BreadcrumbItem[]; } export function Breadcrumb({ items }: Props) { return ( ); }