apps/web: add favicon files
@ -7,10 +7,15 @@ export default class MyDocument extends Document {
|
||||
<Html lang="ru" translate="no">
|
||||
<Head>
|
||||
<meta charSet="utf-8" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content={description} />
|
||||
<link rel="icon" href={process.env.NEXT_PUBLIC_FAVICON} crossOrigin="use-credentials" />
|
||||
<link rel="apple-touch-icon" href="logo-100.png" crossOrigin="use-credentials" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon.png" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
|
||||
<meta name="msapplication-TileColor" content="#1c01a9" />
|
||||
<meta name="theme-color" content="#ffffff" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
|
||||
BIN
apps/web/public/android-chrome-96x96.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
apps/web/public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
9
apps/web/public/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#1c01a9</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
BIN
apps/web/public/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 974 B |
BIN
apps/web/public/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
BIN
apps/web/public/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
21
apps/web/public/safari-pinned-tab.svg
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="120.000000pt" height="120.000000pt" viewBox="0 0 120.000000 120.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,120.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M360 1170 c-102 -26 -183 -68 -255 -133 -19 -17 -18 -18 31 -70 28
|
||||
-28 60 -62 71 -75 18 -21 53 -22 53 -3 0 13 109 63 164 76 315 74 575 -250
|
||||
430 -535 -104 -204 -371 -268 -571 -136 l-52 34 -63 -64 c-34 -36 -66 -71 -70
|
||||
-78 -5 -9 6 -25 35 -48 111 -88 238 -129 390 -124 56 2 109 6 117 8 8 3 29 8
|
||||
45 12 75 19 180 82 250 151 119 118 173 249 173 415 0 107 -15 171 -64 268
|
||||
-122 241 -416 371 -684 302z"/>
|
||||
<path d="M470 750 c-86 -23 -136 -115 -109 -198 43 -129 227 -145 284 -25 59
|
||||
124 -46 257 -175 223z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1023 B |
14
apps/web/public/site.webmanifest
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||