Files
cozsweet-frontend-nextjs/public/manifest.json
T
admin e557f084c4 feat: add PWA icons (192x192 and 512x512) to web manifest
Include new splash icons in public/manifest.json to support Progressive Web App installation and display across various device resolutions.
2026-06-11 15:18:25 +08:00

33 lines
689 B
JSON

{
"name": "cozsweet",
"short_name": "cozsweet",
"description": "Cozsweet — Your exclusive AI companion",
"start_url": "/splash",
"scope": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#0d0b14",
"theme_color": "#f84d96",
"lang": "en",
"icons": [
{
"src": "/favicon.ico",
"sizes": "any",
"type": "image/x-icon",
"purpose": "any"
},
{
"src": "/images/splash/Icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/images/splash/Icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
}
]
}