supermemory/apps/web/app/manifest.ts
MaheshtheDev 1423bd7004 feat: mobile responsive, lint formats, toast, render issue fix (#688)
- Mobile responsive
- new toast design
- web document render issue fix
- posthog analytics
- ui improvements
2026-01-21 03:11:53 +00:00

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",
},
],
}
}