import { ReactNode } from "react" import { t } from "i18next" import { cn } from "@/lib/utils" import { AppContent } from "./ui/app-content" import { Label } from "./ui/label" type PageHeaderProps = { title: ReactNode subtitle?: string actions?: ReactNode children?: ReactNode image?: ReactNode contentWidth?: number } const PageHeader = ({ title, subtitle, actions, children, image, }: PageHeaderProps) => { return (