import Link from "next/link"; type Crumb = { label: string; href?: string; }; export default function ZxdbBreadcrumbs({ items }: { items: Crumb[] }) { if (items.length === 0) return null; const lastIndex = items.length - 1; return ( ); }