import Link from "next/link";
import DocPopup from "@/src/components/layouts/doc-popup";
import { type Status, StatusBadge } from "./status-badge";
import { cn } from "@/src/utils/tailwind";
type HeaderProps = {
title: string;
status?: Status;
label?: {
text: string;
href: string;
};
help?: { description: string; href?: string; className?: string };
actionButtons?: React.ReactNode;
className?: string;
};
export default function Header({ ...props }: HeaderProps) {
return