diff --git a/fry.png b/fry.png
new file mode 100644
index 0000000..c6166fd
Binary files /dev/null and b/fry.png differ
diff --git a/index.html b/index.html
index f87529c..56e34b3 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,9 @@
- Browser Notepad
+ noted.
+
+
@@ -228,6 +230,19 @@
notepad.addEventListener('click', (e) => {
e.stopPropagation();
});
+
+ // Register service worker for PWA functionality
+ if ('serviceWorker' in navigator) {
+ window.addEventListener('load', () => {
+ navigator.serviceWorker.register('service-worker.js')
+ .then(registration => {
+ console.log('ServiceWorker registration successful with scope: ', registration.scope);
+ })
+ .catch(err => {
+ console.log('ServiceWorker registration failed: ', err);
+ });
+ });
+ }