diff options
| author | Dhravya <[email protected]> | 2024-04-13 23:48:14 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-04-13 23:48:14 -0700 |
| commit | 126b2d00df57b32bc1e5adbbf2ae3dc7ca32c5ab (patch) | |
| tree | 1a466a25e4a44ab8e70a00697d4cb41e05cf5d80 | |
| parent | manifest file for pwa (diff) | |
| download | supermemory-126b2d00df57b32bc1e5adbbf2ae3dc7ca32c5ab.tar.xz supermemory-126b2d00df57b32bc1e5adbbf2ae3dc7ca32c5ab.zip | |
more meta tags
| -rw-r--r-- | apps/web/public/og-image.png | bin | 0 -> 132192 bytes | |||
| -rw-r--r-- | apps/web/src/app/layout.tsx | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/apps/web/public/og-image.png b/apps/web/public/og-image.png Binary files differnew file mode 100644 index 00000000..1050ff19 --- /dev/null +++ b/apps/web/public/og-image.png diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 81fe8f99..b3ae4c86 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -8,6 +8,24 @@ const inter = Inter({ weight: ["300", "400", "500"], subsets: ["latin"] }); export const metadata: Metadata = { title: "Supermemory - Your second brain", description: "Save your memories forever, build your own second brain.", + openGraph: { + images: [ + { + url: "/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.", + }, }; export default function RootLayout({ |