Update favicon, manifest, page border (#127)
|
Before Width: | Height: | Size: 15 KiB |
BIN
front/public/icon-128x128.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
front/public/icon-144x144.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
front/public/icon-152x152.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
front/public/icon-192x192.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
front/public/icon-284x284.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
front/public/icon-48x48.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
front/public/icon-512x512.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
front/public/icon-72x72.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
front/public/icon-96x96.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
@ -2,17 +2,20 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/icon-48x48.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/icon-192x192.png" />
|
||||
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
|
||||
<title>Twenty</title>
|
||||
</head>
|
||||
|
||||
|
Before Width: | Height: | Size: 7.8 KiB |
@ -1,16 +1,51 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"short_name": "Twenty",
|
||||
"name": "Twenty",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"src": "icon-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/x-icon"
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "logo192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
"src": "icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-128x128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-152x152.png",
|
||||
"sizes": "152x152",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-284x284.png",
|
||||
"sizes": "284x284",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "icon-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
|
||||