diff --git a/examples/magento-graphcms/public/manifest.webmanifest b/examples/magento-graphcms/public/manifest.webmanifest index 1ab2d2f0f3..b66a92fb32 100644 --- a/examples/magento-graphcms/public/manifest.webmanifest +++ b/examples/magento-graphcms/public/manifest.webmanifest @@ -1,22 +1,57 @@ { "name": "GraphCommerce", + "id": "?homescreen=1", "short_name": "GraphCommerce", + "description": "GraphCommerce® is a headless e-commerce frontend for Magento.", "display": "standalone", "theme_color": "#000000", "background_color": "#FFFFFF", "start_url": "/", + "launch_handler": { + "client_mode": ["navigate-existing", "auto"] + }, + "orientation": "portrait-primary", "icons": [ { "src": "/manifest/favicon-192.png", "sizes": "192x192", "type": "image/png", - "purpose": "any maskable" + "purpose": "any" }, { "src": "/manifest/favicon-512.png", "sizes": "512x512", "type": "image/png", - "purpose": "any maskable" + "purpose": "any" } - ] + ], + "screenshots": [ + { + "src": "/manifest/screenshots/home.png", + "sizes": "720x1280", + "type": "image/png", + "form_factor": "narrow", + "label": "Homepage" + }, + { + "src": "/manifest/screenshots/nav.png", + "sizes": "720x1280", + "type": "image/png", + "form_factor": "narrow", + "label": "Navigation" + }, + { + "src": "/manifest/screenshots/upsell.png", + "sizes": "720x1280", + "type": "image/png", + "form_factor": "Upsell", + "label": "Navigation" + } + ], + "dir": "ltr", + "categories": ["developer tools", "shopping"], + "lang": "nl", + "prefer_related_applications": false, + "scope": "https://graphcommerce.vercel.app/", + "handle_links": "preferred" } diff --git a/examples/magento-graphcms/public/manifest/screenshots/home.png b/examples/magento-graphcms/public/manifest/screenshots/home.png new file mode 100644 index 0000000000..28be851d38 Binary files /dev/null and b/examples/magento-graphcms/public/manifest/screenshots/home.png differ diff --git a/examples/magento-graphcms/public/manifest/screenshots/nav.png b/examples/magento-graphcms/public/manifest/screenshots/nav.png new file mode 100644 index 0000000000..7c11895fca Binary files /dev/null and b/examples/magento-graphcms/public/manifest/screenshots/nav.png differ diff --git a/examples/magento-graphcms/public/manifest/screenshots/upsell.png b/examples/magento-graphcms/public/manifest/screenshots/upsell.png new file mode 100644 index 0000000000..0d4bf1f89d Binary files /dev/null and b/examples/magento-graphcms/public/manifest/screenshots/upsell.png differ