diff --git a/packages/ui/src/App.tsx b/packages/ui/src/App.tsx
index 65549b901..7029bb847 100644
--- a/packages/ui/src/App.tsx
+++ b/packages/ui/src/App.tsx
@@ -13,35 +13,6 @@ function App() {
const [developerMode, setDeveloperMode] = useState(false);
const [menuOpen, setMenuOpen] = useState(false);
- const navStyle: React.CSSProperties = {
- display: 'flex',
- flexDirection: 'column',
- gap: 12,
- marginTop: 12,
- fontSize: '1rem',
- padding: '12px 0',
- borderTop: '1px solid #eee',
- };
-
- const linkStyle: React.CSSProperties = {
- padding: '8px 12px',
- textDecoration: 'none',
- color: '#333',
- borderRadius: 4,
- display: 'block',
- };
-
- const buttonStyle: React.CSSProperties = {
- padding: '8px 12px',
- background: '#f0f0f0',
- border: '1px solid #ccc',
- borderRadius: 4,
- cursor: 'pointer',
- fontSize: '1rem',
- minWidth: 44,
- minHeight: 44,
- };
-
return (
@@ -50,34 +21,58 @@ function App() {
{menuOpen && (
-