mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 10:16:27 +03:00
Add manifest.webmanifest
This commit is contained in:
parent
ae2a27e988
commit
207c9d9e1c
|
@ -9,6 +9,17 @@ export default function App({ Component, pageProps }: AppProps) {
|
|||
<>
|
||||
<Head>
|
||||
<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>
|
||||
<MDXProvider components={remarkComponents}>
|
||||
<Component {...pageProps} />
|
||||
|
|
BIN
website/public/icons/icon-192x192.png
Normal file
BIN
website/public/icons/icon-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
website/public/icons/icon-256x256.png
Normal file
BIN
website/public/icons/icon-256x256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
website/public/icons/icon-384x384.png
Normal file
BIN
website/public/icons/icon-384x384.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
website/public/icons/icon-512x512.png
Normal file
BIN
website/public/icons/icon-512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
31
website/public/manifest.webmanifest
Normal file
31
website/public/manifest.webmanifest
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user