feat(frontend): use the Mangalord monogram as the browser tab icon
The favicon link pointed at a non-existent favicon.ico. Ship the monogram SVGs from static/ and wire two theme-aware <link rel="icon"> tags so the tab icon follows the browser color scheme: the dark-M "light" monogram on light chrome, the white-M "dark" monogram on dark. Bump 0.93.10 -> 0.94.0 (feat). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -2,7 +2,16 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
|
||||
<link
|
||||
rel="icon"
|
||||
href="%sveltekit.assets%/mangalord-monogram-light.svg"
|
||||
media="(prefers-color-scheme: light)"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
href="%sveltekit.assets%/mangalord-monogram-dark.svg"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
/>
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1, viewport-fit=cover"
|
||||
|
||||
Reference in New Issue
Block a user