{
  "_comment": "Web app manifest for a minimal staff PWA. Required so browsers (especially iOS Safari) can Add to Home Screen / install; without install + standalone display, iOS will not deliver Web Push. Linked from apps/web/src/app/layout.tsx (metadata.manifest). Icons live under public/icons/ (not src/assets) so URLs stay stable and unhashed — manifests and the service worker need fixed paths like /icons/icon-192.png. JSON has no // comments; unknown keys like _comment are ignored by browsers.",
  "name": "Nail Canvas Staff",
  "short_name": "Nail Canvas",
  "description": "Staff dashboard for Nail Canvas — appointments, bookings, and salon management.",
  "start_url": "/dashboard",
  "scope": "/",
  "display": "standalone",
  "background_color": "#ffffff",
  "theme_color": "#ec4899",
  "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"
    }
  ]
}
