diff --git a/website/src/app.html b/website/src/app.html index 92038a90bb..b5ce93fe3f 100644 --- a/website/src/app.html +++ b/website/src/app.html @@ -4,6 +4,8 @@
+ + %sveltekit.head% diff --git a/website/static/apple-touch-icon.png b/website/static/apple-touch-icon.png new file mode 100644 index 0000000000..7895136227 Binary files /dev/null and b/website/static/apple-touch-icon.png differ diff --git a/website/static/icon-192x192.png b/website/static/icon-192x192.png new file mode 100644 index 0000000000..18e20b9881 Binary files /dev/null and b/website/static/icon-192x192.png differ diff --git a/website/static/icon-512x512.png b/website/static/icon-512x512.png new file mode 100644 index 0000000000..1a449fe8a1 Binary files /dev/null and b/website/static/icon-512x512.png differ diff --git a/website/static/site.webmanifest b/website/static/site.webmanifest new file mode 100644 index 0000000000..ee46fd35bb --- /dev/null +++ b/website/static/site.webmanifest @@ -0,0 +1,37 @@ +{ + "scope": "/gpx.studio/app", + "start_url": "/gpx.studio/app", + "display": "standalone", + "orientation": "any", + "name": "gpx.studio", + "short_name": "gpx.studio", + "description": "View, edit, and create GPX files online.", + "theme_color": "#030816", + "background_color": "#030816", + "icons": [ + { + "src": "/icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/icon-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/icon-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + } + ] +}