feat: add iOS-focused PWA shell with service worker and manifest

This commit is contained in:
Oliver 2026-02-15 16:12:04 +01:00
parent 56b8825ca5
commit fea5fe9cbb
No known key found for this signature in database
9 changed files with 176 additions and 3 deletions

19
src/manifest.webmanifest Normal file
View file

@ -0,0 +1,19 @@
{
"name": "StaySense NRW",
"short_name": "StaySense",
"description": "Night Safety Score für ruhige Nächte (22-06 Uhr) in NRW.",
"start_url": "/",
"scope": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#f3f7f6",
"theme_color": "#006680",
"icons": [
{
"src": "/icons/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any maskable"
}
]
}