Skip to content

Commit

Permalink
feat(apps/web): Add manifest file to app folder
Browse files Browse the repository at this point in the history
  • Loading branch information
nevendyulgerov committed Jan 29, 2025
1 parent 1a8161b commit 9f320e4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions apps/web/src/app/manifest.ts
Original file line number Diff line number Diff line change
@@ -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",
},
],
};
}

0 comments on commit 9f320e4

Please sign in to comment.