import Link from 'next/link'; interface BreadcrumbItem { label: string; href?: string; } interface HeaderProps { breadcrumbs: BreadcrumbItem[]; showSearch?: boolean; showIndex?: boolean; showAwards?: boolean; } export default function Header({ breadcrumbs, showSearch = true, showIndex = true, showAwards = true }: HeaderProps) { return (
{/* Breadcrumb Navigation */} {/* Right Navigation */} {(showSearch || showIndex || showAwards) && (
{showSearch && ( Search Memorial )} {showAwards && ( Awards for
Heroism & Gallantry )} {showIndex && ( View Complete Index )}
)}
); }