From 8767f2c5d2004ae67b07a3cc84cce2acdc9335e1 Mon Sep 17 00:00:00 2001 From: Groq Agent Date: Tue, 24 Mar 2026 03:47:01 +0000 Subject: [PATCH] [groq] Create manifest.json for PWA install (#101) (#102) Co-authored-by: Groq Agent Co-committed-by: Groq Agent --- 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" + } + ] +}