add PWA support

This commit is contained in:
2026-01-28 10:26:28 +01:00
parent 45e6f2b1ed
commit 10d03fa56b
5 changed files with 101 additions and 3 deletions

24
manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "Ground Scanner",
"short_name": "Scanner",
"description": "Scan text to discover European hotspots",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#0f172a",
"theme_color": "#06b6d4",
"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"
}
]
}