mirror of
https://github.com/LucasKalil-Programador/world-2026-hub.git
synced 2026-07-04 17:41:28 -03:00
feat(pwa): add Tier 1 support — installable app with manifest and icons
This commit is contained in:
parent
2ad27084d5
commit
715ecedbcb
17 changed files with 156 additions and 2 deletions
46
manifest.json
Normal file
46
manifest.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue