From bdf015f8179c47744af2b77a6a57d0fea51b580f Mon Sep 17 00:00:00 2001 From: Padreug Date: Wed, 17 Jun 2026 12:29:04 +0200 Subject: [PATCH 1/3] fix(layout): use the generic user icon (not login) for the logged-out menu trigger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The top-right menu trigger showed a LogIn (arrow-into-door) icon when logged out; use the generic User icon instead — it reads as "your account / profile" and matches the avatar shown when logged in. Still opens the same profile/menu sheet (with the login CTA). Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/layout/StandaloneMenu.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/layout/StandaloneMenu.vue b/src/components/layout/StandaloneMenu.vue index b174061..0fa878e 100644 --- a/src/components/layout/StandaloneMenu.vue +++ b/src/components/layout/StandaloneMenu.vue @@ -2,7 +2,7 @@ import { ref, type Component } from 'vue' import { useI18n } from 'vue-i18n' import { useRouter } from 'vue-router' -import { LogIn } from 'lucide-vue-next' +import { User } from 'lucide-vue-next' import { Sheet, SheetContent, @@ -62,7 +62,7 @@ function handleClick(item: SidebarNavItem) { {{ fallbackInitial || '?' }} - + From c037d45255e58da423fa77a85f537d0737489042 Mon Sep 17 00:00:00 2001 From: Padreug Date: Wed, 17 Jun 2026 18:56:30 +0200 Subject: [PATCH 2/3] feat(layout): hide "Back to hub" for the events-only launch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Comment out the profile sheet's "Back to hub" link (and its hubRootUrl) since only the events app ships first — nothing to go back to yet. The commented markup swaps the old Home icon for the HUB's brand-kit logo (noted as a @brand-hub-logo alias to add when re-enabled — the hub logo, not the per-standalone @brand-app-logo) so it's ready to re-enable when the hub launches. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/layout/ProfileSheetContent.vue | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/layout/ProfileSheetContent.vue b/src/components/layout/ProfileSheetContent.vue index ce082b7..9d3f5fe 100644 --- a/src/components/layout/ProfileSheetContent.vue +++ b/src/components/layout/ProfileSheetContent.vue @@ -1,7 +1,7 @@