feat: clean up default favicons

This commit is contained in:
Travis Fischer
2022-04-06 19:31:44 -04:00
parent 2a5f2f3912
commit e0deeea9b1
13 changed files with 11 additions and 44 deletions

View File

@@ -8,30 +8,12 @@ export default class MyDocument extends Document {
<IconContext.Provider value={{ style: { verticalAlign: 'middle' } }}>
<Html lang='en'>
<Head>
<link rel='shortcut icon' href='/favicon.png' />
<link
rel='apple-touch-icon'
sizes='180x180'
href='/apple-touch-icon.png'
/>
<link
rel='icon'
type='image/png'
sizes='96x96'
href='/favicon-96x96.png'
/>
<link rel='shortcut icon' href='/favicon.ico' />
<link
rel='icon'
type='image/png'
sizes='32x32'
href='/favicon-32x32.png'
/>
<link
rel='icon'
type='image/png'
sizes='16x16'
href='/favicon-16x16.png'
href='favicon.png'
/>
<link rel='manifest' href='/manifest.json' />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 608 B

BIN
public/favicon@128w.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
public/favicon@192w.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -1,39 +1,24 @@
{
"name": "Transitive Bullshit",
"short_name": "Transitive BS",
"name": "Next.js Notion Starter Kit",
"short_name": "Starter Kit",
"icons": [
{
"src": "/favicon-16x16.png",
"type": "image/png",
"sizes": "16x16"
},
{
"src": "/favicon-32x32.png",
"src": "/favicon.png",
"type": "image/png",
"sizes": "32x32"
},
{
"src": "/favicon-96x96.png",
"src": "/favicon@128w.png",
"type": "image/png",
"sizes": "96x96"
"sizes": "128x128"
},
{
"src": "/apple-touch-icon.png",
"src": "/favicon@192w.png",
"type": "image/png",
"sizes": "180x180"
},
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
"sizes": "192x192"
}
],
"theme_color": "#F898B9",
"background_color": "#ffffff",
"theme_color": "#000000",
"background_color": "#000000",
"display": "standalone"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB