try a webmanifest

Changed files
+14
atproto-notifications
+1
atproto-notifications/index.html
··· 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>spacedust notifications</title> 7 </head> 8 <body> 9 <div id="root"></div>
··· 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>spacedust notifications</title> 7 + <link rel="manifest" href="/site.webmanifest" /> 8 </head> 9 <body> 10 <div id="root"></div>
+13
atproto-notifications/public/site.webmanifest
···
··· 1 + { 2 + "short_name": "Spacedust", 3 + "name": "Spacedust notifications", 4 + "icons": [{ 5 + "src": "images/icon-7-192.png", 6 + "type": "image/png", 7 + "sizes": "192x192" 8 + }], 9 + "start_url": "/", 10 + "display": "fullscreen", 11 + "background_color": "#faebd2", 12 + "theme_color": "#faebd2" 13 + }