aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/manifest.ts
blob: 9077d287b36fa85a1b38edfdd14ad3255765c36d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
	return {
		name: "Supermemory",
		short_name: "supermemory",
		description: "Your memories, wherever you are",
		start_url: "/",
		display: "standalone",
		background_color: "#ffffff",
		theme_color: "#000000",
		icons: [
			{
				src: "/images/logo.png",
				sizes: "192x192",
				type: "image/png",
			},
		],
	};
}