diff --git a/frontend/src/components/layout/Layout.tsx b/frontend/src/components/layout/Layout.tsx
index 4b7ce00..0e695ba 100644
--- a/frontend/src/components/layout/Layout.tsx
+++ b/frontend/src/components/layout/Layout.tsx
@@ -1,3 +1,4 @@
+import type React from 'react'
import { Outlet } from 'react-router-dom'
import BottomNav from './BottomNav'
import SideNav from './SideNav'
@@ -19,27 +20,53 @@ function TopBar() {
setTheme(THEME_CYCLE[(idx + 1) % THEME_CYCLE.length])
}
+ const iconBtn: React.CSSProperties = {
+ background: 'var(--bg-4)', border: 'none', borderRadius: 8,
+ width: 36, height: 36, cursor: 'pointer',
+ color: 'var(--ink-2)', fontSize: 16,
+ display: 'flex', alignItems: 'center', justifyContent: 'center',
+ flexShrink: 0,
+ }
+
return (
- Application d'organisation personnelle -
-