import Link from 'next/link'; import { ChevronRight } from 'lucide-react'; export interface Crumb { label: string; href?: string; } export function Breadcrumbs({ items, className = '' }: { items: Crumb[]; className?: string }) { if (items.length === 0) return null; return ( ); }