web: add manifest, more icons, and some metadata
|
@ -2,8 +2,19 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
||||||
<meta name="viewport" content="viewport-fit=cover, width=device-width, height=device-height, initial-scale=1, maximum-scale=1" />
|
<meta name="viewport" content="viewport-fit=cover, width=device-width, height=device-height, initial-scale=1, maximum-scale=1" />
|
||||||
|
|
||||||
|
<title>cobalt</title>
|
||||||
|
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<meta name="apple-mobile-web-app-title" content="cobalt">
|
||||||
|
|
||||||
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="%sveltekit.assets%/icons/apple-touch-icon.png">
|
||||||
|
|
||||||
|
<link rel="manifest" href="%sveltekit.assets%/manifest.json">
|
||||||
|
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
<body data-sveltekit-preload-data="hover">
|
<body data-sveltekit-preload-data="hover">
|
||||||
|
|
BIN
web/static/icons/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
web/static/icons/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
web/static/icons/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
web/static/icons/generic.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
web/static/icons/maskable/128.png
Normal file
After Width: | Height: | Size: 815 B |
BIN
web/static/icons/maskable/192.png
Normal file
After Width: | Height: | Size: 1,014 B |
BIN
web/static/icons/maskable/384.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
web/static/icons/maskable/48.png
Normal file
After Width: | Height: | Size: 390 B |
BIN
web/static/icons/maskable/512.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
web/static/icons/maskable/72.png
Normal file
After Width: | Height: | Size: 569 B |
BIN
web/static/icons/maskable/96.png
Normal file
After Width: | Height: | Size: 617 B |
75
web/static/manifest.json
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
{
|
||||||
|
"name": "cobalt",
|
||||||
|
"short_name": "cobalt",
|
||||||
|
"start_url": "/",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/icons/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/generic.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "any"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/48.png",
|
||||||
|
"sizes": "48x48",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/72.png",
|
||||||
|
"sizes": "72x72",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/96.png",
|
||||||
|
"sizes": "96x96",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/128.png",
|
||||||
|
"sizes": "128x128",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/384.png",
|
||||||
|
"sizes": "384x384",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/icons/maskable/512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"share_target": {
|
||||||
|
"action": "/",
|
||||||
|
"params": {
|
||||||
|
"text": "u",
|
||||||
|
"url": "u"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"theme_color": "#000000",
|
||||||
|
"background_color": "#000000",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|