From b9d4926303e6633e7552242accefbfce2851c53d Mon Sep 17 00:00:00 2001 From: N1C4T Date: Fri, 9 Jan 2026 21:02:06 +0400 Subject: [PATCH] feat: add PWA manifest with app metadata and theme --- public/manifest.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 public/manifest.json diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..8ec4d7f --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,24 @@ +{ + "name": "TuxMate", + "short_name": "TuxMate", + "description": "Linux bulk app installer - select your apps, get your install script", + "start_url": "/", + "display": "standalone", + "background_color": "#0a0a0a", + "theme_color": "#8B5CF6", + "orientation": "any", + "icons": [ + { + "src": "/icon-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "any maskable" + }, + { + "src": "/icon-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any maskable" + } + ] +} \ No newline at end of file