diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 6 | ||||
-rw-r--r-- | public/manifest.json | 19 |
2 files changed, 24 insertions, 1 deletions
diff --git a/public/index.html b/public/index.html index 0e74a89..4590ae4 100644 --- a/public/index.html +++ b/public/index.html @@ -2,8 +2,12 @@ <html lang="en"> <head> <meta charset="utf-8" /> - <link rel="icon" type="image/png" sizes="16x16" href="./which-logo-64.png" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="#00796b" /> + <meta name="description" content="Social webapp based on choosing between two options." /> + <link rel="icon" type="image/png" sizes="16x16" href="./which-logo-64.png" /> + <link rel="apple-touch-icon" href="./which-logo-512.png" /> + <link rel="manifest" href="./manifest.json" /> <title>Which</title> <!-- Start Single Page Apps for GitHub Pages --> <script type="text/javascript"> diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..faa47a3 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,19 @@ +{ + "short_name": "Which", + "name": "Which", + "icons": [ + { + "src": "which-logo-512.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "which-logo-64.png", + "type": "image/png", + "sizes": "64x64" + } + ], + "display": "standalone", + "theme_color": "#00796b", + "background_color": "#ffffff" +} |