import { Group, Stack, Text, Title } from "@mantine/core"; import type { ReactNode } from "react"; export function PageHeader({ title, description, actions, }: { title: string; description?: string; actions?: ReactNode; }) { return ( {title} {description && ( {description} )} {actions && {actions}} ); }