diff --git a/public/images/icon.svg b/public/images/icon.svg new file mode 100644 index 0000000..bed531d --- /dev/null +++ b/public/images/icon.svg @@ -0,0 +1 @@ + diff --git a/public/images/icon512x512.png b/public/images/icon512x512.png new file mode 100644 index 0000000..c58b951 Binary files /dev/null and b/public/images/icon512x512.png differ diff --git a/public/index.html b/public/index.html index 8e84b35..0671a40 100644 --- a/public/index.html +++ b/public/index.html @@ -4,6 +4,7 @@ + VANILLA TODO + + @@ -47,6 +50,8 @@ + +
diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..5a41dd1 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,22 @@ +{ + "name": "VANILLA TODO", + "short_name": "VANILLA TODO", + "start_url": ".", + "display": "standalone", + "background_color": "#fefefe", + "theme_color": "#fefefe", + "description": "A to-do app in plain HTML, CSS and JavaScript", + "icons": [ + { + "src": "images/icon.svg", + "sizes": "any", + "type": "image/svg+xml" + }, + { + "src": "images/icon512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}