From 2bfdc7a1715731c5cbc1b680b96a720a6942eeb0 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 19:05:20 +0000 Subject: [PATCH] feat(ux): Add aria-labels to icon-only buttons in AppShell Co-authored-by: artosien <65523959+artosien@users.noreply.github.com> --- .Jules/palette.md | 1 + src/components/layout/app-shell.tsx | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .Jules/palette.md diff --git a/.Jules/palette.md b/.Jules/palette.md new file mode 100644 index 0000000..5fb8e43 --- /dev/null +++ b/.Jules/palette.md @@ -0,0 +1 @@ +## 2024-05-24 - Accessibility: ARIA Labels on Navigation Shell\n**Learning:** The global navigation shell contained several icon-only buttons (menu, notifications, dynamic mobile actions) missing screen reader context.\n**Action:** Always verify icon-only buttons have descriptive aria-labels, especially in high-visibility core layout components. diff --git a/src/components/layout/app-shell.tsx b/src/components/layout/app-shell.tsx index c6a1b0f..06198c9 100644 --- a/src/components/layout/app-shell.tsx +++ b/src/components/layout/app-shell.tsx @@ -212,13 +212,13 @@ export function AppShell({ children }: { children: React.ReactNode }) { Lottoping