summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-08-05 20:39:00 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-08-05 20:39:00 +0300
commit449e67bbb18d951e036bcb5e387df7642b9fe80e (patch)
tree0205e8b238c7b5610e065710593216e00a8aeafd /src/components
parentb6a7d12fd7b865b84770f7919da7324ac9d0a1bc (diff)
feat: add favicons
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Favicons.astro5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/Favicons.astro b/src/components/Favicons.astro
index fed6696..dcf2218 100644
--- a/src/components/Favicons.astro
+++ b/src/components/Favicons.astro
@@ -1,10 +1,9 @@
---
import favIcon from '~/assets/favicons/favicon.ico';
-import favIconSvg from '~/assets/favicons/favicon.svg';
import appleTouchIcon from '~/assets/favicons/apple-touch-icon.png';
+import androidChromeIcon from '~/assets/favicons/android-chrome-192x192.png';
---
<link rel="shortcut icon" href={favIcon} />
-<link rel="icon" type="image/svg+xml" href={favIconSvg.src} />
-<link rel="mask-icon" href={favIconSvg.src} color="#8D46E7" />
<link rel="apple-touch-icon" sizes="180x180" href={appleTouchIcon.src} />
+<link rel="icon" type="image/png" sizes="192x192" href={androidChromeIcon.src} />