From e0a5a41a6bf240c7b1e356bb23b3fb208b2aff82 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Mon, 17 Aug 2026 10:14:45 +0200 Subject: [PATCH] feat(start): hamburger toggles start page sidebar, settings accessible from start --- frontend/src/pages/StartPage.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/src/pages/StartPage.tsx b/frontend/src/pages/StartPage.tsx index 56ccdd5..98aead4 100644 --- a/frontend/src/pages/StartPage.tsx +++ b/frontend/src/pages/StartPage.tsx @@ -7,6 +7,7 @@ import React from 'react'; import { useNavigate } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; import { useAuthStore } from '@/store/authStore'; +import { useUIStore } from '@/store/uiStore'; import { Settings, HelpCircle, LayoutGrid, ArrowRight, Plus } from 'lucide-react'; // Workspace tile definition @@ -34,6 +35,7 @@ export function StartPage() { const { t } = useTranslation(); const navigate = useNavigate(); const user = useAuthStore((state) => state.user); + const sidebarOpen = useUIStore((state) => state.sidebarOpen); const menuItems = [ { id: 'workspaces', label: 'Workspaces', icon: , active: true }, @@ -43,12 +45,12 @@ export function StartPage() { return (
- {/* Left column — menu */} -