✨ Add web app manifest
This commit is contained in:
parent
08844684b9
commit
8eed595022
8 changed files with 41 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Hashtag Manager</title>
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
BIN
public/images/touch/homescreen144.png
Normal file
BIN
public/images/touch/homescreen144.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
BIN
public/images/touch/homescreen168.png
Normal file
BIN
public/images/touch/homescreen168.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
BIN
public/images/touch/homescreen192.png
Normal file
BIN
public/images/touch/homescreen192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
BIN
public/images/touch/homescreen48.png
Normal file
BIN
public/images/touch/homescreen48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
public/images/touch/homescreen72.png
Normal file
BIN
public/images/touch/homescreen72.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
BIN
public/images/touch/homescreen96.png
Normal file
BIN
public/images/touch/homescreen96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
40
public/manifest.json
Normal file
40
public/manifest.json
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"name": "Hashtag Manager",
|
||||
"short_name": "HashtagManager",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"background_color": "#fff",
|
||||
"description": "A manager for social media hashtags",
|
||||
"icons": [
|
||||
{
|
||||
"src": "images/touch/homescreen48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/touch/homescreen72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/touch/homescreen96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/touch/homescreen144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/touch/homescreen168.png",
|
||||
"sizes": "168x168",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/touch/homescreen192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue