feat(brand): wire favicon chain to real product logo

SVG primary + 32px PNG fallback + Apple touch icon. Removes the
placeholder 3-wavy-lines favicon.
This commit is contained in:
hsiegeln
2026-04-24 23:38:12 +02:00
parent 6f0268ebea
commit 03573b2ac1
2 changed files with 3 additions and 9 deletions

View File

@@ -31,7 +31,9 @@ const ogUrl = new URL(ogImage, Astro.site ?? 'https://www.cameleer.io').toString
<meta name="description" content={description} />
<link rel="canonical" href={canonical} />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/cameleer-logo.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/icons/cameleer-32.png" />
<link rel="apple-touch-icon" href="/icons/cameleer-180.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Cameleer" />