{
  "$comment": "Wave 14e — PWA install manifest. Loaded via app/layout.tsx <link rel=manifest>. start_url goes straight to the dashboard so installed-app launches skip the marketing site. Background and theme colors match V6 brand tokens (cream + flame orange). TODO operator: drop production icon PNGs into /public/icons/ at the listed sizes — the existing /android-chrome-* fallbacks are wired below so the manifest validates today.",
  "name": "Migrossa",
  "short_name": "Migrossa",
  "description": "Immigration eligibility, pathway guidance, and case workspace.",
  "start_url": "/dashboard",
  "scope": "/",
  "display": "standalone",
  "orientation": "portrait",
  "background_color": "#FFF7EF",
  "theme_color": "#FF8A33",
  "categories": ["productivity", "business", "lifestyle"],
  "icons": [
    {
      "src": "/icons/icon-192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/icons/icon-512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/icons/icon-maskable-192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "maskable"
    },
    {
      "src": "/icons/icon-maskable-512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "maskable"
    },
    {
      "src": "/android-chrome-192x192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/android-chrome-512x512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/migrossa-logo.svg",
      "sizes": "any",
      "type": "image/svg+xml",
      "purpose": "any"
    }
  ],
  "shortcuts": [
    {
      "name": "Open dashboard",
      "url": "/dashboard",
      "description": "Jump back to your case workspace"
    },
    {
      "name": "Eligibility checker",
      "url": "/eligibility-checker",
      "description": "Run an eligibility assessment"
    }
  ]
}
