From 86a8e8d647d78b8f9907c6470f1ffa143522bb23 Mon Sep 17 00:00:00 2001 From: Isaac Hatton Date: Sat, 21 Jun 2025 12:16:17 +0000 Subject: [PATCH] Add PWA manifest --- index.html | 2 ++ manifest.json | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 manifest.json diff --git a/index.html b/index.html index 084d96d..4225a5d 100644 --- a/index.html +++ b/index.html @@ -22,6 +22,8 @@ + + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..d1156ef --- /dev/null +++ b/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "LEGO® Island", + "icons": [ + { + "src": "favicon.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": "/", + "display": "standalone", + "theme_color": "#000000" +} \ No newline at end of file