diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-07-08 13:14:33 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-07-08 13:14:33 +0200 |
commit | 57b0a48a6b6b999161bdbd83267a59ac4c2fb430 (patch) | |
tree | 8ef548bec1823f27f0d68f60de1b9f1240710b8e | |
parent | ee868d2f5f23bca0165081a9ab263ea4753f3b93 (diff) |
added mobile manifest
-rw-r--r-- | pages/_app.tsx | 2 | ||||
-rw-r--r-- | public/img/logo-192.png | bin | 0 -> 32583 bytes | |||
-rw-r--r-- | public/img/logo-512.png | bin | 0 -> 185442 bytes | |||
-rw-r--r-- | public/manifest.json | 22 |
4 files changed, 24 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx index a42ad6c..92f91af 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -18,6 +18,8 @@ export default function Pressure({ Component, pageProps }) { <Head> <title>pressure</title> <link as='style' href='/font/font.css' /> + <link rel='manifest' href='/manifest.json' /> + <meta name='theme-color' content='#171D33' /> </Head> <Component {...pageProps} /> </>; diff --git a/public/img/logo-192.png b/public/img/logo-192.png Binary files differnew file mode 100644 index 0000000..c369aef --- /dev/null +++ b/public/img/logo-192.png diff --git a/public/img/logo-512.png b/public/img/logo-512.png Binary files differnew file mode 100644 index 0000000..5c2c8a0 --- /dev/null +++ b/public/img/logo-512.png diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..3798ec1 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,22 @@ +{ + "short_name": "Pressure", + "name": "Pressure", + "icons": [ + { + "src": "/img/logo-192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "/img/logo-512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": "/mobile", + "background_color": "#07071C", + "display": "standalone", + "scope": "/mobile", + "theme_color": "#171D33", + "description": "Presentation remote" +} |