diff --git a/index.html b/index.html index 6efcba0..a806a59 100644 --- a/index.html +++ b/index.html @@ -52,6 +52,16 @@ } } + + + +
@@ -78,13 +88,13 @@ ☎️
- ⏰ + ⏰
πŸ“»
- πŸ—ΊοΈ + πŸ—ΊοΈ
πŸ”„ diff --git a/roadmap.html b/roadmap.html index 5a838f2..19e6c13 100644 --- a/roadmap.html +++ b/roadmap.html @@ -37,6 +37,7 @@
  • small pictures for booklet
  • entwurf board materialpark
  • jitsi
  • +
  • mollie
  • diff --git a/service-worker.js b/service-worker.js new file mode 100644 index 0000000..f740d7f --- /dev/null +++ b/service-worker.js @@ -0,0 +1,22 @@ + const cacheName = 'minimal-pwa-v1'; + const assets = [ + './', + './index.html', + './manifest.json' + ]; + + self.addEventListener('install', (event) => { + event.waitUntil( + caches.open(cacheName).then((cache) => { + return cache.addAll(assets); + }) + ); + }); + + self.addEventListener('fetch', (event) => { + event.respondWith( + caches.match(event.request).then((response) => { + return response || fetch(event.request); + }) + ); + });