import type { ReactNode } from "react"; export function PageHeader({ title, description, actions }: { title: string; description: string; actions?: ReactNode }) { return (

{title}

{description}

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