feat(pwa): add Tier 1 support — installable app with manifest and icons

This commit is contained in:
Lucas Kalil 2026-06-16 15:09:34 -03:00
parent 2ad27084d5
commit 715ecedbcb
17 changed files with 156 additions and 2 deletions

46
manifest.json Normal file
View file

@ -0,0 +1,46 @@
{
"name": "World Cup 2026 Hub",
"short_name": "WC 2026 Hub",
"description": "World Cup 2026 Hub — schedule, groups, interactive knockout bracket and stadiums.",
"lang": "en",
"dir": "ltr",
"start_url": ".",
"scope": "./",
"display": "standalone",
"orientation": "any",
"background_color": "#081421",
"theme_color": "#081421",
"categories": ["sports"],
"icons": [
{
"src": "assets/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "assets/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "assets/icons/icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "assets/icons/icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "assets/icons/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
}
]
}