import Link from "next/link"; export type BreadcrumbItem = { label: string; href?: string; }; export default function Breadcrumb({ items }: { items: BreadcrumbItem[] }) { if (!items.length) return null; return ( ); }