9 lines
518 B
PHP
9 lines
518 B
PHP
{{-- Favicons + PWA manifest. Assets live in public/ (served directly, not via Vite):
|
|
favicon.svg (scalable, primary), favicon.ico (legacy 16/32/48), apple-touch-icon,
|
|
icon-192/512 + site.webmanifest. theme-color matches the void background. --}}
|
|
<link rel="icon" href="/favicon.ico" sizes="32x32">
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<meta name="theme-color" content="#06080A">
|