Skip to content

Commit

Permalink
added icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Mar 31, 2024
1 parent 1af3157 commit 9a53446
Show file tree
Hide file tree
Showing 15 changed files with 66 additions and 38 deletions.
Binary file added public/icons/120x120.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/icons/128x128.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/icons/144x144.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/icons/152x152.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/icons/16x16.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/icons/180x180.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/icons/192x192.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/icons/32x32.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/icons/384x384.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/icons/512x512.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/icons/72x72.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/icons/96x96.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 removed public/icons/icon-144x144.png
Binary file not shown.
67 changes: 63 additions & 4 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,70 @@
"start_url": "/",
"icons": [
{
"src": "icons/icon-144x144.png",
"src": "icons/16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "icons/32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "icons/72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "icons/96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "icons/120x120.png",
"sizes": "120x120",
"type": "image/png"
},
{
"src": "icons/128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "icons/152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "icons/180x180.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "icons/192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "icons/512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable any"
"purpose": "maskable"
}
],
"splash_pages": null
]
}
37 changes: 3 additions & 34 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,41 +109,10 @@ export default function RootLayout({
<meta name='msapplication-TileColor' content='#020817' />
<meta name='msapplication-tap-highlight' content='no' />
<meta name='theme-color' content='#020817' />
<link rel='apple-touch-icon' href='/icons/touch-icon-iphone.png' />
<link
rel='apple-touch-icon'
sizes='152x152'
href='/icons/touch-icon-ipad.png'
/>
<link
rel='apple-touch-icon'
sizes='180x180'
href='/icons/touch-icon-iphone-retina.png'
/>
<link
rel='apple-touch-icon'
sizes='167x167'
href='/icons/touch-icon-ipad-retina.png'
/>
<link
rel='icon'
type='image/png'
sizes='32x32'
href='/icons/favicon-32x32.png'
/>
<link
rel='icon'
type='image/png'
sizes='16x16'
href='/icons/favicon-16x16.png'
/>


<link rel='manifest' href='/manifest.json' />
<link
rel='mask-icon'
href='/icons/safari-pinned-tab.svg'
color='#020817'
/>
<link rel='shortcut icon' href='/favicon.ico' />

<link rel='preconnect' href='https://fonts.googleapis.com'></link>
<link rel='preconnect' href='https://fonts.gstatic.com'></link>
<link
Expand Down

0 comments on commit 9a53446

Please sign in to comment.