import Link from 'next/link'; import { ChevronRight } from 'lucide-react'; interface BreadcrumbItem { label: string; href?: string; } interface BlogBreadcrumbsProps { items: BreadcrumbItem[]; variant?: 'light' | 'dark'; } export const BlogBreadcrumbs = ({ items, variant = 'dark', }: BlogBreadcrumbsProps) => { const textColor = variant === 'dark' ? 'text-gray-400' : 'text-gray-600'; const hoverColor = variant === 'dark' ? 'hover:text-white' : 'hover:text-gray-900'; const activeColor = variant === 'dark' ? 'text-white' : 'text-gray-900'; return ( ); };