diff --git a/.gitignore b/.gitignore index 9909d06..537f1e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -positions.db \ No newline at end of file +positions.db +.DS_Store \ No newline at end of file diff --git a/public/icon-192.png b/public/icon-192.png new file mode 100644 index 0000000..ff36355 Binary files /dev/null and b/public/icon-192.png differ diff --git a/public/icon-512.png b/public/icon-512.png new file mode 100644 index 0000000..ea6175a Binary files /dev/null and b/public/icon-512.png differ diff --git a/public/index.html b/public/index.html index aa7c5b6..6504bc9 100644 --- a/public/index.html +++ b/public/index.html @@ -5,6 +5,13 @@ Cuberoo + + + + + + +
diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..2f203a1 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Cuberoo", + "short_name": "Cuberoo", + "start_url": ".", + "display": "standalone", + "background_color": "#800080", + "theme_color": "#800080", + "description": "Cubes, but fun.", + "icons": [ + { + "src": "icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icon-512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}