[A] webmanifest
This commit is contained in:
parent
3a3c02233b
commit
fc19305664
3 changed files with 26 additions and 0 deletions
|
|
@ -1,3 +1,5 @@
|
|||
/* https://coolors.co/52d1dc-475b5a-8d8e8e-a3a9aa-bbbbbf */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
<head>
|
||||
<title>WebFrame</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/png" href="https://dummyimage.com/92x92/52d0dc/475b5a.png&text=+WF">
|
||||
<link rel="manifest" href="/manifest.webmanifest">
|
||||
<link rel="stylesheet" type="text/css" href="index.css">
|
||||
<script src="vue.js"></script>
|
||||
</head>
|
||||
|
|
|
|||
22
public/manifest.webmanifest
Normal file
22
public/manifest.webmanifest
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"short_name": "WebFrame",
|
||||
"name": "WebFrame - Your personal digital picture frame on the web.",
|
||||
"description": "With webframe you can turn any device with a screen and browser into a digital picture frame.",
|
||||
"icons": [
|
||||
{
|
||||
"src": "https://dummyimage.com/192x192/52d0dc/475b5a.png&text=+WebFrame",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "https://dummyimage.com/512x512/52d0dc/475b5a.png&text=+WebFrame",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"background_color": "#52D1DC",
|
||||
"display": "fullscreen",
|
||||
"scope": "/",
|
||||
"theme_color": "#52D1DC"
|
||||
}
|
||||
Loading…
Reference in a new issue