fix: add back to home link on login page (#722)

Users were getting confused with no way to navigate back.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>

authored by zzstoatzz.io Claude Opus 4.5 and committed by GitHub 4b1fd92f b6382d8c

Changed files
+15
frontend
src
routes
login
+15
frontend/src/routes/login/+page.svelte
··· 126 126 </div> 127 127 {/if} 128 128 </div> 129 + 130 + <a href="/" class="back-link">← back to home</a> 129 131 </div> 130 132 </div> 131 133 ··· 261 263 padding: 0.15rem 0.4rem; 262 264 border-radius: var(--radius-sm); 263 265 font-size: 0.85em; 266 + } 267 + 268 + .back-link { 269 + display: block; 270 + text-align: center; 271 + margin-top: 1.5rem; 272 + color: var(--text-tertiary); 273 + font-size: var(--text-sm); 274 + text-decoration: none; 275 + } 276 + 277 + .back-link:hover { 278 + color: var(--text-secondary); 264 279 } 265 280 266 281 @media (max-width: 480px) {