From 08629b8052538522492ce27d5fc5dd321ec4428f Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 26 Mar 2026 12:12:42 +0100 Subject: [PATCH] refactor(zitare): move settings, spiral, themes to account dropdown Remove settings and spiral from main pill navigation and add them as items in the account dropdown (Konto pill) on the right side. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/zitare/apps/web/src/routes/(app)/+layout.svelte | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/zitare/apps/web/src/routes/(app)/+layout.svelte b/apps/zitare/apps/web/src/routes/(app)/+layout.svelte index 63b82abbc..8473d9066 100644 --- a/apps/zitare/apps/web/src/routes/(app)/+layout.svelte +++ b/apps/zitare/apps/web/src/routes/(app)/+layout.svelte @@ -94,8 +94,6 @@ { href: '/categories', label: $_('nav.categories'), icon: 'grid' }, { href: '/favorites', label: $_('nav.favorites'), icon: 'heart' }, { href: '/lists', label: $_('nav.lists'), icon: 'list' }, - { href: '/settings', label: $_('nav.settings'), icon: 'settings' }, - { href: '/spiral', label: 'Spiral', icon: 'sparkles' }, ]); // Filter hidden nav items @@ -104,7 +102,7 @@ ); // Navigation routes for keyboard shortcuts - const navRoutes = ['/', '/categories', '/favorites', '/lists', '/settings', '/spiral']; + const navRoutes = ['/', '/categories', '/favorites', '/lists']; function handleToggleTheme() { theme.toggleMode(); @@ -253,8 +251,11 @@ {appItems} {userEmail} settingsHref="/settings" + spiralHref="/spiral" + themesHref="/themes" manaHref="/mana" profileHref="/profile" + helpHref="/help" allAppsHref="/apps" /> {/if}