interface PageHeaderProps { title: string; onSave?: () => void; } export function PageHeader({ title, onSave }: PageHeaderProps) { return (