diff --git a/index.html b/index.html index 15db9a5..5334ab0 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ Hashtag Manager + diff --git a/public/images/touch/homescreen144.png b/public/images/touch/homescreen144.png new file mode 100644 index 0000000..1fcac90 Binary files /dev/null and b/public/images/touch/homescreen144.png differ diff --git a/public/images/touch/homescreen168.png b/public/images/touch/homescreen168.png new file mode 100644 index 0000000..2c70f79 Binary files /dev/null and b/public/images/touch/homescreen168.png differ diff --git a/public/images/touch/homescreen192.png b/public/images/touch/homescreen192.png new file mode 100644 index 0000000..62cd948 Binary files /dev/null and b/public/images/touch/homescreen192.png differ diff --git a/public/images/touch/homescreen48.png b/public/images/touch/homescreen48.png new file mode 100644 index 0000000..e9112b1 Binary files /dev/null and b/public/images/touch/homescreen48.png differ diff --git a/public/images/touch/homescreen72.png b/public/images/touch/homescreen72.png new file mode 100644 index 0000000..9cdc71e Binary files /dev/null and b/public/images/touch/homescreen72.png differ diff --git a/public/images/touch/homescreen96.png b/public/images/touch/homescreen96.png new file mode 100644 index 0000000..4b50a1c Binary files /dev/null and b/public/images/touch/homescreen96.png differ diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..d959b0c --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,40 @@ +{ + "name": "Hashtag Manager", + "short_name": "HashtagManager", + "start_url": ".", + "display": "standalone", + "background_color": "#fff", + "description": "A manager for social media hashtags", + "icons": [ + { + "src": "images/touch/homescreen48.png", + "sizes": "48x48", + "type": "image/png" + }, + { + "src": "images/touch/homescreen72.png", + "sizes": "72x72", + "type": "image/png" + }, + { + "src": "images/touch/homescreen96.png", + "sizes": "96x96", + "type": "image/png" + }, + { + "src": "images/touch/homescreen144.png", + "sizes": "144x144", + "type": "image/png" + }, + { + "src": "images/touch/homescreen168.png", + "sizes": "168x168", + "type": "image/png" + }, + { + "src": "images/touch/homescreen192.png", + "sizes": "192x192", + "type": "image/png" + } + ] +}