import { Sidebar } from './sidebar'; import { Header } from './header'; interface DashboardShellProps { children: React.ReactNode; title: string; headerContent?: React.ReactNode; } export function DashboardShell({ children, title, headerContent }: DashboardShellProps) { return (