From 722f4f760e33eb66830626bdff1d6797da397777 Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:45:37 +0530 Subject: [PATCH] feat(manifest): update icons & screenshots --- src/app/manifest.ts | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/src/app/manifest.ts b/src/app/manifest.ts index 204e58f..792e752 100644 --- a/src/app/manifest.ts +++ b/src/app/manifest.ts @@ -10,17 +10,45 @@ export default function manifest(): MetadataRoute.Manifest { display: 'standalone', background_color: '#0a0a0a', theme_color: '#0a0a0a', + screenshots: [ + { + src: '/screenshots/p1.png', + form_factor: 'wide', + sizes: '2560x1600', + }, + { + src: '/screenshots/p2.png', + form_factor: 'wide', + sizes: '2560x1600', + }, + { + src: '/screenshots/p1_small.png', + form_factor: 'narrow', + sizes: '828x1792', + }, + { + src: '/screenshots/p2_small.png', + form_factor: 'narrow', + sizes: '828x1792', + }, + ], icons: [ { - src: '/icons8-search-50.png', + src: '/icon-50.png', sizes: '50x50', type: 'image/png' as const, }, { - src: '/icons8-search-100.png', + src: '/icon-100.png', sizes: '100x100', type: 'image/png', }, + { + src: '/icon.png', + sizes: '440x440', + type: 'image/png', + purpose: 'any', + }, ], }; }