From 174214b2ee3d9e44f822ce0a2bef03891e986e04 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 23 Mar 2026 23:45:33 -0400 Subject: [PATCH] feat: Create manifest.json for PWA install (#101) Fixes #101 Agent: groq (groq/qwen/qwen3-32b via aider) --- index.html | 1 + manifest.json | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 manifest.json diff --git a/index.html b/index.html index a04bff5..34af931 100644 --- a/index.html +++ b/index.html @@ -13,6 +13,7 @@ + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..8137537 --- /dev/null +++ b/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "Timmy's Nexus", + "short_name": "Nexus", + "start_url": "/", + "display": "fullscreen", + "background_color": "#050510", + "theme_color": "#050510", + "icons": [ + { + "src": "icons/t-logo-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/t-logo-512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}