refactor: streamline favicon/icon set to match roux convention

SVG + favicon-32.png + apple-touch-icon.png (180) + icon-192/512.png.
Removes favicon.ico and redundant 16/48/96/180px named files.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 17:00:41 +02:00
parent ea7691b772
commit 16bf611780
8 changed files with 8 additions and 7 deletions
+3 -4
View File
@@ -102,8 +102,7 @@
/> />
<!-- Favicon & PWA --> <!-- Favicon & PWA -->
<link rel="icon" href="/favicon.svg" type="image/svg+xml" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" sizes="16x16 32x32 48x48" type="image/x-icon" /> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="icon" href="/icon-96.png" type="image/png" sizes="96x96" /> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="apple-touch-icon" href="/icon-180.png" sizes="180x180" />
<link rel="manifest" href="/site.webmanifest" /> <link rel="manifest" href="/site.webmanifest" />

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

+2
View File
@@ -3,6 +3,8 @@
"short_name": "Bar Pivoine", "short_name": "Bar Pivoine",
"description": "A field guide to the good pour.", "description": "A field guide to the good pour.",
"icons": [ "icons": [
{ "src": "/favicon-32.png", "type": "image/png", "sizes": "32x32" },
{ "src": "/apple-touch-icon.png", "type": "image/png", "sizes": "180x180" },
{ "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" }, { "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" }, { "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" },
{ "src": "/favicon.svg", "type": "image/svg+xml", "sizes": "any" } { "src": "/favicon.svg", "type": "image/svg+xml", "sizes": "any" }