Files
task-manager/client/public/manifest.json
T
Paul Nothaft 88cd2a5c88
continuous-integration/drone/push Build is passing
feat: Implement TaskFlow logos and icons throughout the application
- Add favicon files (16x16 to 256x256, .ico)
- Add PWA icons (128, 256, 512, 1024)
- Add apple-touch-icon for iOS
- Add transparent icons for loading screens
- Add horizontal logo with tagline for auth page
- Update HTML head with proper favicon links
- Update PWA manifest with correct icon references
- Update sidebar header with branded icon
- Update mobile header with branded icon
- Update auth/login pages with logo display
- Update loading state with branded splash screen
- Update 404 page with logo header
- Update email template to use proper logo URL
- Update service worker and push notifications to use correct icons
2026-01-19 21:40:09 +01:00

42 lines
915 B
JSON

{
"name": "TaskFlow",
"short_name": "TaskFlow",
"description": "Gamified task management with AI assistance. Focus. Flow. AI.",
"start_url": "/",
"display": "standalone",
"background_color": "#0f0f23",
"theme_color": "#7c3aed",
"orientation": "portrait-primary",
"icons": [
{
"src": "/icon-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "/icon-256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-1024.png",
"sizes": "1024x1024",
"type": "image/png"
}
],
"categories": ["productivity", "utilities"],
"prefer_related_applications": false
}