diff --git a/index.html b/index.html index cf5dc1e..1633678 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ + @@ -30,7 +31,6 @@ property="og:description" content="Upload data from Garmin Approach R10 Radar, analyze your golf shots over time and sessions with R10Progress." /> - <meta property="og:image" content="URL_TO_YOUR_SOCIAL_SHARE_IMAGE" /> <!-- Twitter --> <meta property="twitter:card" content="summary_large_image" /> @@ -42,7 +42,6 @@ property="twitter:description" content="Upload data from Garmin Approach R10 Radar, analyze your golf shots over time and sessions with R10Progress." /> - <meta property="twitter:image" content="URL_TO_YOUR_SOCIAL_SHARE_IMAGE" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" /> diff --git a/public/icon512_maskable.png b/public/icon512_maskable.png deleted file mode 100644 index 73849b0..0000000 Binary files a/public/icon512_maskable.png and /dev/null differ diff --git a/public/icon512_rounded.png b/public/icon512_rounded.png deleted file mode 100644 index fcb62ac..0000000 Binary files a/public/icon512_rounded.png and /dev/null differ diff --git a/public/images/icons/icon-128x128.png b/public/images/icons/icon-128x128.png new file mode 100644 index 0000000..a2557d2 Binary files /dev/null and b/public/images/icons/icon-128x128.png differ diff --git a/public/images/icons/icon-144x144.png b/public/images/icons/icon-144x144.png new file mode 100644 index 0000000..94e4584 Binary files /dev/null and b/public/images/icons/icon-144x144.png differ diff --git a/public/images/icons/icon-152x152.png b/public/images/icons/icon-152x152.png new file mode 100644 index 0000000..ff26c89 Binary files /dev/null and b/public/images/icons/icon-152x152.png differ diff --git a/public/images/icons/icon-192x192.png b/public/images/icons/icon-192x192.png new file mode 100644 index 0000000..6fae4e0 Binary files /dev/null and b/public/images/icons/icon-192x192.png differ diff --git a/public/images/icons/icon-384x384.png b/public/images/icons/icon-384x384.png new file mode 100644 index 0000000..e91c509 Binary files /dev/null and b/public/images/icons/icon-384x384.png differ diff --git a/public/images/icons/icon-512x512.png b/public/images/icons/icon-512x512.png new file mode 100644 index 0000000..8a22062 Binary files /dev/null and b/public/images/icons/icon-512x512.png differ diff --git a/public/images/icons/icon-72x72.png b/public/images/icons/icon-72x72.png new file mode 100644 index 0000000..fe4b17a Binary files /dev/null and b/public/images/icons/icon-72x72.png differ diff --git a/public/images/icons/icon-96x96.png b/public/images/icons/icon-96x96.png new file mode 100644 index 0000000..fc14a9a Binary files /dev/null and b/public/images/icons/icon-96x96.png differ diff --git a/public/manifest.json b/public/manifest.json index c343050..962a9a4 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,26 +1,52 @@ { - "theme_color": "#8936FF", - "background_color": "#2EC6FE", + "name": "R10Progress - Golf Analytics", + "short_name": "R10Progress", + "theme_color": "#0c79bc", + "background_color": "#fff", + "display": "browser", + "orientation": "portrait", + "scope": "/", + "start_url": "/", "icons": [ { - "purpose": "maskable", - "sizes": "512x512", - "src": "icon512_maskable.png", + "src": "images/icons/icon-72x72.png", + "sizes": "72x72", + "type": "image/png" + }, + { + "src": "images/icons/icon-96x96.png", + "sizes": "96x96", + "type": "image/png" + }, + { + "src": "images/icons/icon-128x128.png", + "sizes": "128x128", + "type": "image/png" + }, + { + "src": "images/icons/icon-144x144.png", + "sizes": "144x144", "type": "image/png" }, { - "purpose": "any", + "src": "images/icons/icon-152x152.png", + "sizes": "152x152", + "type": "image/png" + }, + { + "src": "images/icons/icon-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "images/icons/icon-384x384.png", + "sizes": "384x384", + "type": "image/png" + }, + { + "src": "images/icons/icon-512x512.png", "sizes": "512x512", - "src": "icon512_rounded.png", "type": "image/png" } - ], - "orientation": "portrait", - "display": "standalone", - "dir": "left", - "lang": "en-EN", - "name": "R10Progress - Golf Analytics", - "short_name": "R10Progress", - "description": "Transform your golfing experience with R10Progress, the ultimate companion for your Garmin Approach R10 Golf Radar. This intuitive app is designed to effortlessly track your progress and help you achieve your golfing goals. With R10Progress, you can easily monitor your performance, analyze your data, and make informed adjustments to your game. Say goodbye to guesswork and hello to a smarter way of improving your golf skills.", - "id": "https://r10progress.com" + ] }