Files
cozsweet-frontend-nextjs/public/manifest.json
T
admin a6bc6941d4 refactor(splash): convert Skip to explicit guest login flow
- Splash Skip button now dispatches `AuthGuestLoginSubmitted` instead of
  direct routing, keeping guest auth under the state machine
- Update PWA install dialog copy ("Add to Home Screen") and drop favicon
  entry from manifest icons
- Add debug logging and routing sequence docs to splash-button
2026-06-11 15:58:48 +08:00

27 lines
572 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": "/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"
}
]
}