diff options
| author | yxshv <[email protected]> | 2024-04-14 14:32:12 +0530 |
|---|---|---|
| committer | yxshv <[email protected]> | 2024-04-14 14:32:12 +0530 |
| commit | ac41d347711b7f056a2cf8564d25dc425eb3aa8d (patch) | |
| tree | 4b921f0868d3b3d64ffcccebf2e353c4fc969bd7 /apps/web/src | |
| parent | new modals (diff) | |
| parent | 6144 char limit (diff) | |
| download | supermemory-ac41d347711b7f056a2cf8564d25dc425eb3aa8d.tar.xz supermemory-ac41d347711b7f056a2cf8564d25dc425eb3aa8d.zip | |
merge
Diffstat (limited to 'apps/web/src')
| -rw-r--r-- | apps/web/src/app/favicon.ico | bin | 25931 -> 0 bytes | |||
| -rw-r--r-- | apps/web/src/app/layout.tsx | 29 |
2 files changed, 27 insertions, 2 deletions
diff --git a/apps/web/src/app/favicon.ico b/apps/web/src/app/favicon.ico Binary files differdeleted file mode 100644 index 718d6fea..00000000 --- a/apps/web/src/app/favicon.ico +++ /dev/null diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 42485461..e5a447dc 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -6,8 +6,33 @@ const roboto = Roboto({ weight: ["300", "400", "500"], subsets: ["latin"] }); const inter = Inter({ weight: ["300", "400", "500"], subsets: ["latin"] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Supermemory - Your second brain", + description: "Save your memories forever, build your own second brain.", + openGraph: { + images: [ + { + url: "https://supermemory.dhr.wtf/og-image.png", + width: 1200, + height: 630, + }, + ], + siteName: "Supermemory", + title: "Supermemory - Your second brain", + description: "Save your memories forever, build your own second brain.", + }, + twitter: { + card: "summary_large_image", + site: "https://supermemory.dhr.wtf", + creator: "@dhravyashah", + description: "Save your memories forever, build your own second brain.", + images: [ + { + url: "https://supermemory.dhr.wtf/og-image.png", + width: 1200, + height: 630, + }, + ], + }, }; export default function RootLayout({ |