feat(brand): split-W PWA icons + favicons (replaces purple-star placeholder)
CI / test (push) Has been cancelled
- New mark: solid "W" glyph color-split left=white / right=yellow over the Camogli harbor photo from logo.svg; right half reads as a "V" so the W alone communicates "WeVisto" at icon scale where the wordmark is illegible. - PWA icons (192, 512, apple-touch 180) rendered full-bleed; maskable variant shrinks the W to the inner 65% so circle/squircle launcher masks crop sky and harbor pixels, not the glyph. - Adds favicon-16/32/64 PNGs and replaces the old purple-star favicon.svg with a lightweight vector split-W on solid navy. - Wires the new favicons into both the SPA (frontend/index.html) and the Symfony Twig base (templates/base.html.twig), replacing the Symfony default "sf" emoji data-URL placeholder on the login page. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@@ -5,7 +5,9 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||||
<title>WeVisto</title>
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" type="image/svg+xml" href="/build/favicon.svg" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/build/icons/favicon-32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/build/icons/favicon-16.png" />
|
||||
<link rel="manifest" href="/build/manifest.webmanifest" />
|
||||
<link rel="apple-touch-icon" href="/build/icons/apple-touch-icon.png" />
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 599 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 885 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 303 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 234 KiB |
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 599 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 885 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 303 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 234 KiB |
@@ -6,6 +6,8 @@
|
||||
<title>WeVisto</title>
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/build/favicon.svg" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/build/icons/favicon-32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/build/icons/favicon-16.png" />
|
||||
<link rel="manifest" href="/build/manifest.webmanifest" />
|
||||
<link rel="apple-touch-icon" href="/build/icons/apple-touch-icon.png" />
|
||||
|
||||
|
||||
@@ -3,7 +3,10 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{% block title %}Welcome!{% endblock %}</title>
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
|
||||
<link rel="icon" type="image/svg+xml" href="/build/favicon.svg">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/build/icons/favicon-32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/build/icons/favicon-16.png">
|
||||
<link rel="apple-touch-icon" href="/build/icons/apple-touch-icon.png">
|
||||
{% block stylesheets %}
|
||||
{% endblock %}
|
||||
|
||||
|
||||