Skip to content

Commit

Permalink
feat: clean up default favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Apr 6, 2022
1 parent 2a5f2f3 commit e0deeea
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 44 deletions.
22 changes: 2 additions & 20 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' />
Expand Down
Binary file removed public/android-chrome-192x192.png
Binary file not shown.
Binary file removed public/android-chrome-512x512.png
Binary file not shown.
Binary file removed public/apple-touch-icon.png
Binary file not shown.
Binary file removed public/favicon-16x16.png
Binary file not shown.
Binary file removed public/favicon-32x32.png
Binary file not shown.
Binary file removed public/favicon-96x96.png
Binary file not shown.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file modified public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 9 additions & 24 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -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 removed public/social.jpg
Binary file not shown.

0 comments on commit e0deeea

Please sign in to comment.