diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 3b4d85b..f29e407 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -32,6 +32,7 @@ jobs: favicon.png og-image.png index.html + manifest.json styles/main.css vendor/iamjarl-tokens.css vercel.json diff --git a/index.html b/index.html index a4779e2..cb655de 100644 --- a/index.html +++ b/index.html @@ -4,23 +4,64 @@ - + + + - + + + + + + + + - Little Rocket + Little Rocket — A meditative browser space game + + + + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..ee7334e --- /dev/null +++ b/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Little Rocket", + "short_name": "Rocket", + "description": "A tiny browser game about flying a small ship through the long dark.", + "start_url": "/", + "scope": "/", + "display": "standalone", + "orientation": "any", + "background_color": "#000000", + "theme_color": "#000000", + "categories": ["games", "entertainment"], + "lang": "en", + "icons": [ + { + "src": "/favicon.png", + "sizes": "192x192 512x512 1024x1024", + "type": "image/png", + "purpose": "any" + } + ] +}