Skip to content

Commit

Permalink
add multiple sizes high quality pngs with transparent background to s…
Browse files Browse the repository at this point in the history
…upport multiple sizes
  • Loading branch information
yuvarajsai committed Dec 14, 2024
1 parent 0934252 commit 158b8fa
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 3 deletions.
Binary file modified public/logo-512x512-maskable.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/logo/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/logo/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/logo/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/logo/256x256.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/logo/48x48.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/logo/512x512-maskable.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/logo/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/logo/64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 28 additions & 3 deletions src/app/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,42 @@ export default function manifest(): MetadataRoute.Manifest {
theme_color: '#047857',
icons: [
{
src: '/android-chrome-192x192.png',
src: '/logo/48x48.png',
sizes: '48x48',
type: 'image/png',
},
{
src: '/logo/64x64.png',
sizes: '64x64',
type: 'image/png',
},
{
src: '/logo/128x128.png',
sizes: '128x128',
type: 'image/png',
},
{
src: '/logo/144x144.png',
sizes: '144x144',
type: 'image/png',
},
{
src: '/logo/192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/android-chrome-512x512.png',
src: '/logo/256x256.png',
sizes: '256x256',
type: 'image/png',
},
{
src: '/logo/512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/logo-512x512-maskable.png',
src: '/logo/512x512-maskable.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
Expand Down

0 comments on commit 158b8fa

Please sign in to comment.