ca-grow-ops-manager/frontend/public/manifest.json
fullsizemalt f51a1072fe
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s
feat(pwa): Add PWA support for installable kiosk app
- Added manifest.json for 'Add to Home Screen' installation
- Added service worker for offline caching
- Added app icons (192px, 512px)
- Updated index.html with mobile meta tags
- Created spec for Escort Handoff Mode (009)
2025-12-11 16:13:50 -08:00

52 lines
No EOL
1.3 KiB
JSON

{
"name": "777 Wolfpack Visitor Kiosk",
"short_name": "Visitor Kiosk",
"description": "Digital visitor check-in kiosk for 777 Wolfpack facility",
"start_url": "/kiosk",
"display": "standalone",
"orientation": "portrait",
"background_color": "#0f172a",
"theme_color": "#10b981",
"icons": [
{
"src": "/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"categories": [
"business",
"productivity"
],
"shortcuts": [
{
"name": "New Visitor",
"short_name": "New",
"url": "/kiosk?mode=new",
"icons": [
{
"src": "/icons/icon-192.png",
"sizes": "192x192"
}
]
},
{
"name": "Returning Visitor",
"short_name": "Return",
"url": "/kiosk?mode=returning",
"icons": [
{
"src": "/icons/icon-192.png",
"sizes": "192x192"
}
]
}
]
}