blob: 0138138191ac53af1716e467a9452d2f39ad4e96 (
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",
},
],
}
}
|