Add manifest.webmanifest

This commit is contained in:
Marcus Blättermann 2022-12-13 04:52:40 +01:00
parent ae2a27e988
commit 207c9d9e1c
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D
6 changed files with 42 additions and 0 deletions

View File

@ -9,6 +9,17 @@ export default function App({ Component, pageProps }: AppProps) {
<> <>
<Head> <Head>
<link rel="sitemap" type="application/xml" href="/sitemap.xml" /> <link rel="sitemap" type="application/xml" href="/sitemap.xml" />
<link rel="shortcut icon" href="/icons/icon-192x192.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1 maximum-scale=1.0, user-scalable=0, shrink-to-fit=no, viewport-fit=cover"
/>
<meta name="theme-color" content="#09a3d5" />
<link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="256x256" href="/icons/icon-256x256.png" />
<link rel="apple-touch-icon" sizes="384x384" href="/icons/icon-384x384.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512x512.png" />
</Head> </Head>
<MDXProvider components={remarkComponents}> <MDXProvider components={remarkComponents}>
<Component {...pageProps} /> <Component {...pageProps} />

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,31 @@
{
"theme_color": "#09a3d5",
"background_color": "#09a3d5",
"display": "minimal-ui",
"scope": "/",
"start_url": "/",
"name": "spaCy",
"short_name": "spaCy",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}