import type { ReactNode } from 'react'; import { Header } from './Header'; import { Sidebar } from './Sidebar'; interface DashboardLayoutProps { children: ReactNode; } /** * Layout principal du dashboard avec sidebar et header. * Utilise une structure flex avec sidebar fixe et contenu scrollable. */ export function DashboardLayout({ children }: DashboardLayoutProps) { return (