"use client"; import Link from "next/link"; import React from "react"; interface BreadcrumbPath { name: string; href: string; } interface StickyHeaderProps { header: string; paths?: BreadcrumbPath[]; } export default function StickyHeader({ header, paths }: StickyHeaderProps) { return (

{header}

{paths && paths.length > 0 && ( )}
); }