From 9f320e47ec7cffbaa5eaaf0c4a6075158d72fb32 Mon Sep 17 00:00:00 2001 From: Neven Dyulgerov Date: Wed, 29 Jan 2025 13:13:50 +0200 Subject: [PATCH] feat(apps/web): Add manifest file to app folder --- apps/web/src/app/manifest.ts | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 apps/web/src/app/manifest.ts diff --git a/apps/web/src/app/manifest.ts b/apps/web/src/app/manifest.ts new file mode 100644 index 00000000..73fbed05 --- /dev/null +++ b/apps/web/src/app/manifest.ts @@ -0,0 +1,32 @@ +import type { MetadataRoute } from "next"; + +export default function manifest(): MetadataRoute.Manifest { + return { + name: "CartesiScan", + short_name: "CS", + description: + "Scan DApp inputs and interact with DApp's backend at ease.", + start_url: "/", + display: "standalone", + theme_color: "#000000", + background_color: "#00f7ff", + icons: [ + { + src: "cartesi-logo-192x192.png", + sizes: "192x192", + type: "image/png", + }, + { + src: "cartesi-logo-512x512.png", + sizes: "512x512", + type: "image/png", + }, + { + src: "maskable-icon-196x196.png", + sizes: "196x196", + type: "image/png", + purpose: "maskable", + }, + ], + }; +}