This commit is contained in:
Omar Najjar 2024-07-07 00:20:07 +10:00
parent d09ce20379
commit 11ed9e259c
10 changed files with 6 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
favicon/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

BIN
favicon/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
favicon/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

1
favicon/site.webmanifest Normal file
View file

@ -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"}

View file

@ -6,6 +6,7 @@
<title>Instinct App</title>
<link rel="canonical" href="https://kingomarnajjar.github.io/instinct/" />
<link rel="manifest" href="/instinct/manifest.json">
<link rel="shortcut icon" type="image/x-icon" href="favicon/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {

View file

@ -9,12 +9,12 @@
"theme_color": "#000000",
"icons": [
{
"src": "/instinct/icon-192x192.png",
"src": "/instinct/favicon/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/instinct/icon-512x512.png",
"src": "/instinct/favicon/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}

View file

@ -3,6 +3,8 @@ const urlsToCache = [
'/instinct/',
'/instinct/index.html',
'/instinct/manifest.json',
'/instinct/favicon/android-chrome-192x192.png',
'/instinct/favicon/android-chrome-512x512.png'
];
self.addEventListener('install', (event) => {