From 13c963abee460c09fa4b06722310ae0400085c19 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Tue, 28 May 2024 16:07:55 +0200 Subject: [PATCH] feat(pwa): :sparkles: add webmanifest --- static/manifest.json | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 static/manifest.json diff --git a/static/manifest.json b/static/manifest.json new file mode 100644 index 0000000..98558dd --- /dev/null +++ b/static/manifest.json @@ -0,0 +1,62 @@ +{ + "$schema": "https://json.schemastore.org/web-manifest-combined.json", + "name": "Fablab Coh@bit - Creative House", + "short_name": "Coh@bit", + "theme_color": "#82c91e", + "background_color": "#f8fafb", + "display": "standalone", + "scope": "/", + "start_url": "/", + "id": "/", + "orientation": "any", + "icons": [ + { + "src": "/assets/icon-512-rounded.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/assets/icon-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/assets/icon-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/assets/icon-512-mono.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable monochrome" + }, + { + "src": "/assets/icon-192-mono.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable monochrome" + } + ], + "screenshots": [ + { + "src": "/assets/pwa_install_ui-desktop.png", + "sizes": "1920x1080", + "type": "image/png", + "form_factor": "wide", + "label": "Accueil" + }, + { + "src": "/assets/pwa_install_ui-mobile.jpg", + "sizes": "1080x2400", + "type": "image/jpeg", + "form_factor": "narrow", + "label": "Accueil" + } + ], + "lang": "fr", + "description": "L'atelier participatif libre et open source. Accédez aux projets, apps et ressources de Coh@bit - Gérez votre carnet et bien plus." +}