feat: add PWA manifest with app metadata and theme

This commit is contained in:
N1C4T
2026-01-09 21:02:06 +04:00
parent d23db8b722
commit b9d4926303

24
public/manifest.json Normal file
View File

@@ -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"
}
]
}