import { Link } from 'wouter'; const MONO = 'var(--font-mono, monospace)'; export interface BreadcrumbItem { label: string; href?: string; } export interface PageHeaderProps { breadcrumbs?: BreadcrumbItem[]; title: string; description?: string; } export function PageHeader({ breadcrumbs, title, description }: PageHeaderProps) { return (
{description}
)}