From 44cb5fc3b269749a1b206fedb09b365fb1d1162b Mon Sep 17 00:00:00 2001 From: Google AI Agent Date: Mon, 30 Mar 2026 21:13:26 +0000 Subject: [PATCH] feat: add PWA manifest --- manifest.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..b2b22ac --- /dev/null +++ b/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "The Door", + "short_name": "The Door", + "description": "Crisis intervention and support from Timmy.", + "start_url": "/", + "display": "standalone", + "background_color": "#0d1117", + "theme_color": "#0d1117", + "icons": [ + { + "src": "https://picsum.photos/seed/door/192/192", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "https://picsum.photos/seed/door/512/512", + "sizes": "512x512", + "type": "image/png" + } + ] +}