Files
agatha 28df9a1261 Feat: Header title links to grid; sign-out redirects to grid
Make the app title a clickable link to / so users can return to the
image grid from any sub-page without the browser back button. Change
the sign-out destination from /login to / since the grid is publicly
accessible and avoids unnecessary friction post-logout.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-03 20:14:35 +00:00

588 B

Tasks: Header Navigation & Sign-Out Destination

Phase 1: Tests (TDD — write first)

  • T001 Add component tests for header title routerLink to / and sign-out navigation to / in ui/src/app/app.component.spec.ts

Phase 2: Implementation

  • T002 Wrap the .app-name span in a routerLink="/" anchor in ui/src/app/app.component.ts
  • T003 Change onLogout() navigation target from /login to / in ui/src/app/app.component.ts

Phase 3: Validation

  • T004 Run ng lint in ui/ — zero violations
  • T005 Run ng build in ui/ — zero errors