-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.ts
More file actions
42 lines (41 loc) · 927 Bytes
/
manifest.ts
File metadata and controls
42 lines (41 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Sonic Smart Wallet",
short_name: "SonicSW",
description: "A smart web3 wallet",
start_url: "/",
display: "standalone",
background_color: "#ffffff",
theme_color: "#4338ca",
icons: [
{
src: "/favicon.ico",
type: "image/x-icon",
sizes: "16x16 32x32",
},
{
src: "/icon-192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/icon-512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "/icon-192-maskable.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable",
},
{
src: "/icon-512-maskable.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
};
}