import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; type PageHeaderProps = { title: string; subtitle: string; actions?: ReactNode; className?: string; }; export function PageHeader({ title, subtitle, actions, className }: PageHeaderProps) { return (

{title}

{subtitle}

{actions ?
{actions}
: null}
); }