- 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)
52 lines
No EOL
1.3 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |