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
+9
View File
@@ -0,0 +1,9 @@
import { Header } from '@/components/layout/Header'
export default function ImagesPage() {
return (
<>
<Header title="🖼️ Images" />
<div className="p-6"><p className="text-gray-400 text-sm">Module Images à implémenter (Plan 2)</p></div>
</>
)
}