- Add PWA configuration (manifest.json, service worker) - Implement light/dark theme system with purple accents - Replace desktop navbar with mobile-first bottom navigation - Redesign auth forms with mobile-optimized UI - Update Dashboard with gradient cards and touch-friendly actions - Add safe area support for iOS devices - Implement theme context with system preference detection - Optimize touch targets and mobile interactions - Add offline functionality through service worker
30 lines
820 B
JSON
30 lines
820 B
JSON
{
|
|
"short_name": "TCG Vault",
|
|
"name": "TCG Vault - Trading Card Game Collection Manager",
|
|
"description": "Mobile-first PWA for managing your trading card game collections, decks, and scanning cards with AI-powered OCR",
|
|
"icons": [
|
|
{
|
|
"src": "favicon.ico",
|
|
"sizes": "64x64 32x32 24x24 16x16",
|
|
"type": "image/x-icon"
|
|
},
|
|
{
|
|
"src": "logo192.png",
|
|
"type": "image/png",
|
|
"sizes": "192x192"
|
|
},
|
|
{
|
|
"src": "logo512.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512",
|
|
"purpose": "any maskable"
|
|
}
|
|
],
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"orientation": "portrait-primary",
|
|
"theme_color": "#8b5cf6",
|
|
"background_color": "#ffffff",
|
|
"categories": ["entertainment", "lifestyle", "utilities"],
|
|
"prefer_related_applications": false
|
|
}
|