"use client"; import Link from "next/link"; import { ChevronLeft } from "lucide-react"; export function CommunicationBreadcrumbs({ current, parent, }: { current: string; parent?: { href: string; label: string }; }) { return ( ); }