Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
chore(manifest): add varied size of icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jhdcruz committed Oct 15, 2024
1 parent c5a067c commit 465d416
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
Binary file added public/assets/favicon-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/assets/favicon-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/assets/tip-r-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 modified public/favicon.ico
Binary file not shown.
16 changes: 16 additions & 0 deletions src/app/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default function manifest(): MetadataRoute.Manifest {
description:
"The official portal of the T.I.P's Community Extensions Service Office (CESO).",
start_url: '/',
scope: '/',
background_color: '#242424',
display: 'standalone',
theme_color: '#ffc30a',
Expand All @@ -18,6 +19,21 @@ export default function manifest(): MetadataRoute.Manifest {
type: 'image/png',
purpose: 'maskable',
},
{
src: '/assets/tip-r-144x144.png',
sizes: 'any',
type: 'image/png',
},
{
src: '/assets/favicon-128x128.png',
sizes: 'any',
type: 'image/png',
},
{
src: '/assets/favicon-72x72.png',
sizes: 'any',
type: 'image/png',
},
{
src: '/favicon.ico',
sizes: 'any',
Expand Down

0 comments on commit 465d416

Please sign in to comment.