'use client'; import Link from 'next/link'; export type BreadcrumbItem = { label: string; href?: string; }; interface BreadcrumbsProps { items: BreadcrumbItem[]; className?: string; } export default function Breadcrumbs({ items, className }: BreadcrumbsProps) { if (!items || items.length === 0) { return null; } const lastIndex = items.length - 1; return ( ); }