Added favicons, manifest,json and bunch of various size icons.

This commit is contained in:
kplaczek
2018-07-08 12:10:16 +02:00
parent 178853874f
commit 4b2dedc8f2
8 changed files with 39 additions and 1 deletions

BIN
public/icons/icon-128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
public/icons/icon-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

BIN
public/icons/icon-256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
public/icons/icon-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
public/icons/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
public/icons/icon-64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

34
public/manifest.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "PaperPi",
"short_name": "PaperPi",
"start_url": ".",
"display": "standalone",
"background_color": "#277dd1",
"description": "Raspberry Pi printer webapp",
"orientation": "portrait",
"icons": [{
"src": "/icon-16.png",
"sizes": "16x16",
"type": "image/png"
}, {
"src": "/icon-32.png",
"sizes": "32x32",
"type": "image/png"
}, {
"src": "/icon-64.png",
"sizes": "64x64",
"type": "image/png"
}, {
"src": "/icon-128.png",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "/icon-256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}]
}