about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorana <ana@ana.st>2021-08-08 20:16:38 +0200
committerana <ana@ana.st>2021-08-08 20:16:38 +0200
commitb386452100e26dbe33784c789d975e49caf8b586 (patch)
tree47f0eafb39ae47ec2e9d5f90a26ab42824e043a1
parent48e90f59ac321899c24a1cc9ae11c1d00160bcec (diff)
downloadeureka-marks-b386452100e26dbe33784c789d975e49caf8b586.tar.gz
fix: PROPERLY add favicon
-rw-r--r--.gitignore1
-rwxr-xr-xpublic/android-chrome-192x192.pngbin0 -> 61149 bytes
-rwxr-xr-xpublic/android-chrome-512x512.pngbin0 -> 308969 bytes
-rwxr-xr-xpublic/apple-touch-icon.pngbin0 -> 55167 bytes
-rwxr-xr-xpublic/favicon-16x16.pngbin0 -> 991 bytes
-rwxr-xr-xpublic/favicon-32x32.pngbin0 -> 2897 bytes
-rw-r--r--public/index.html5
-rwxr-xr-xpublic/site.webmanifest1
8 files changed, 6 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index ce57e03..a8fffac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ csv/*
 !csv/.gitkeep
 
 .vercel
+.DS_Store
diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png
new file mode 100755
index 0000000..1c96753
--- /dev/null
+++ b/public/android-chrome-192x192.png
Binary files differdiff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png
new file mode 100755
index 0000000..158d1b0
--- /dev/null
+++ b/public/android-chrome-512x512.png
Binary files differdiff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png
new file mode 100755
index 0000000..526f8c6
--- /dev/null
+++ b/public/apple-touch-icon.png
Binary files differdiff --git a/public/favicon-16x16.png b/public/favicon-16x16.png
new file mode 100755
index 0000000..d4fa2bd
--- /dev/null
+++ b/public/favicon-16x16.png
Binary files differdiff --git a/public/favicon-32x32.png b/public/favicon-32x32.png
new file mode 100755
index 0000000..e7d6c30
--- /dev/null
+++ b/public/favicon-32x32.png
Binary files differdiff --git a/public/index.html b/public/index.html
index 45cbc2f..f7390b3 100644
--- a/public/index.html
+++ b/public/index.html
@@ -7,7 +7,10 @@
     <link rel="stylesheet" href="/pure.css" />
     <link rel="stylesheet" href="/pure-responsive-grid.css" />
     <link rel="stylesheet" type="text/css" href="/index.css" />
-    <link rel="shortcut icon" type="image/ico" href="/favicon.ico" />
+    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
+    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
+    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
+    <link rel="manifest" href="/site.webmanifest">
     <title>FFXIV Eureka Marks</title>
   </head>
   <body>
diff --git a/public/site.webmanifest b/public/site.webmanifest
new file mode 100755
index 0000000..45dc8a2
--- /dev/null
+++ b/public/site.webmanifest
@@ -0,0 +1 @@
+{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
\ No newline at end of file