summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/assets/favicons/android-chrome-192x192.pngbin0 -> 9802 bytes
-rw-r--r--src/assets/favicons/apple-touch-icon.pngbin26374 -> 8817 bytes
-rw-r--r--src/assets/favicons/favicon.icobin15086 -> 15086 bytes
-rw-r--r--src/assets/favicons/favicon.pngbin1403 -> 579 bytes
-rw-r--r--src/assets/favicons/favicon.svg20
-rw-r--r--src/components/Favicons.astro5
6 files changed, 2 insertions, 23 deletions
diff --git a/src/assets/favicons/android-chrome-192x192.png b/src/assets/favicons/android-chrome-192x192.png
new file mode 100644
index 0000000..4512dae
--- /dev/null
+++ b/src/assets/favicons/android-chrome-192x192.png
Binary files differ
diff --git a/src/assets/favicons/apple-touch-icon.png b/src/assets/favicons/apple-touch-icon.png
index b5cdb19..6c405e2 100644
--- a/src/assets/favicons/apple-touch-icon.png
+++ b/src/assets/favicons/apple-touch-icon.png
Binary files differ
diff --git a/src/assets/favicons/favicon.ico b/src/assets/favicons/favicon.ico
index cc0080d..0b01e49 100644
--- a/src/assets/favicons/favicon.ico
+++ b/src/assets/favicons/favicon.ico
Binary files differ
diff --git a/src/assets/favicons/favicon.png b/src/assets/favicons/favicon.png
index f7cf5c7..4b353ce 100644
--- a/src/assets/favicons/favicon.png
+++ b/src/assets/favicons/favicon.png
Binary files differ
diff --git a/src/assets/favicons/favicon.svg b/src/assets/favicons/favicon.svg
deleted file mode 100644
index 8fcd56b..0000000
--- a/src/assets/favicons/favicon.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="64.000000pt" height="64.000000pt" viewBox="0 0 64.000000 64.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,64.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M210 425 l-105 -105 108 -108 107 -107 107 107 108 108 -105 105
-c-58 58 -107 105 -110 105 -3 0 -52 -47 -110 -105z m205 -15 l90 -90 -93 -93
--92 -92 -92 92 -93 93 90 90 c49 49 92 90 95 90 3 0 46 -41 95 -90z"/>
-<path d="M288 405 c-38 -21 -53 -73 -34 -118 16 -41 41 -57 86 -57 52 0 70 16
-70 60 0 39 -1 40 -35 40 -19 0 -35 -4 -35 -10 0 -5 9 -10 21 -10 15 0 20 -5
-17 -22 -2 -17 -11 -24 -31 -26 -64 -7 -94 80 -41 115 22 14 31 15 57 5 39 -15
-57 0 26 22 -29 20 -65 20 -101 1z"/>
-</g>
-</svg>
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} />