diff options
Diffstat (limited to 'src/components/Favicons.astro')
| -rw-r--r-- | src/components/Favicons.astro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/Favicons.astro b/src/components/Favicons.astro new file mode 100644 index 0000000..fed6696 --- /dev/null +++ b/src/components/Favicons.astro @@ -0,0 +1,10 @@ +--- +import favIcon from '~/assets/favicons/favicon.ico'; +import favIconSvg from '~/assets/favicons/favicon.svg'; +import appleTouchIcon from '~/assets/favicons/apple-touch-icon.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} /> |
