mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 12:20:04 +00:00
- Mobile responsive - new toast design - web document render issue fix - posthog analytics - ui improvements
20 lines
422 B
TypeScript
20 lines
422 B
TypeScript
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",
|
|
},
|
|
],
|
|
}
|
|
}
|