Add web app manifest

This commit is contained in:
Marcel Kapfer 2024-04-22 20:15:31 +02:00
parent 08844684b9
commit 8eed595022
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
8 changed files with 41 additions and 0 deletions

View File

@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

40
public/manifest.json Normal file
View 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"
}
]
}