feat: app shell avec sidebar, header et pages placeholder

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 00:20:57 +02:00
parent 8d06706a24
commit 51f87c0672
9 changed files with 140 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Sidebar } from '@/components/layout/Sidebar'
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
return (
<div className="flex min-h-screen bg-gray-50">
<Sidebar />
<main className="flex-1 flex flex-col overflow-hidden">{children}</main>
</div>
)
}