From bf9aba3033f3c63048fbcf65f8f75c3b1556ce1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Thu, 14 May 2020 03:09:49 +0200 Subject: [PATCH] feat(frontend): add favicon --- assets/logo.svg | 68 ++++++++++++++++++++++++++++++++++ frontend/public/favicon.png | Bin 0 -> 890 bytes frontend/public/favicon.svg | 34 +++++++++++++++++ frontend/public/index.html | 2 +- frontend/public/manifest.json | 5 ++- 5 files changed, 107 insertions(+), 2 deletions(-) create mode 100644 assets/logo.svg create mode 100644 frontend/public/favicon.png create mode 100644 frontend/public/favicon.svg diff --git a/assets/logo.svg b/assets/logo.svg new file mode 100644 index 0000000..821b748 --- /dev/null +++ b/assets/logo.svg @@ -0,0 +1,68 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/frontend/public/favicon.png b/frontend/public/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..75616f363f5ea0abe8cb1d43afc4b3229b398763 GIT binary patch literal 890 zcmV-=1BLvFP)ef@`v{*Ww*Bv*h00xqHvt*-OqpncS1PbKZI0XU@E5 z<_wukCX>lzGMP*!lNm`i;$2K*tYs}jVVK*U0yHx&!iUE1e16PUy4fJ!B669-?zk=ZxwOQC(zdj z<9HgMi>uVZMI6E73F03pVxCSAD=Cv=i2tlCQXTAHQa`PY#0aPwFp)U+NElGP1yUO@a<{;; z9RVq3fnNMuY2P?NoC)#b^Z@R{JxT-44iFd38gQl3UeRaYhp`h+V(kL`|6GEuc?`>d zP9ObV!+T-@bTLN8fVynM2kO_RQ%g9?8I$9PCd{cT(4Yd$B=GS5H*-*IBvwMkKb_i_;ul zkzfi;!318wC-}?!MUd*YuV%ch$`zz;+a+vIrhY&+<9EHqR<~}i%e~kj3_U3xb!SDf zJ7gJs0G+}g>LovmTiTJ?9Ea6QzJu>t(%2Yd;+tJv1Kw;$X0y~a;DizWbhQv4T0Hq_ z@hSVdWEFnUJNYkMhlTH2CdJ3i@5Q_S436QMHbrGJnM@{=$z(E_Or{3^0btSE^hOOY Q;s5{u07*qoM6N<$f)+rTZ~y=R literal 0 HcmV?d00001 diff --git a/frontend/public/favicon.svg b/frontend/public/favicon.svg new file mode 100644 index 0000000..9bb3751 --- /dev/null +++ b/frontend/public/favicon.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + + diff --git a/frontend/public/index.html b/frontend/public/index.html index 2b1ae9b..98cd24a 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -2,7 +2,7 @@ - + diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json index 5caadfa..6f8710c 100644 --- a/frontend/public/manifest.json +++ b/frontend/public/manifest.json @@ -1,7 +1,10 @@ { "short_name": "Listory", "name": "Listory - Track your Spotify Listens", - "icons": [], + "icons": [ + { "src": "favicon.svg", "sizes": "256x256" }, + { "src": "favicon.png", "sizes": "64x64" } + ], "start_url": ".", "display": "standalone", "theme_color": "#000000",