aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/api
diff options
context:
space:
mode:
authorMahesh Sanikommmu <[email protected]>2025-08-16 18:50:10 -0700
committerMahesh Sanikommmu <[email protected]>2025-08-16 18:50:10 -0700
commit39003aff23d64ff1d96074d71521f6023c9bec01 (patch)
tree3f870c04b3dce315bba1b21aa2da158494e71774 /apps/web/app/api
parentMerge pull request #355 from supermemoryai/archive (diff)
downloadsupermemory-39003aff23d64ff1d96074d71521f6023c9bec01.tar.xz
supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.zip
New Version of Supermemory Consumer App
Diffstat (limited to 'apps/web/app/api')
-rw-r--r--apps/web/app/api/emails/welcome/route.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/web/app/api/emails/welcome/route.tsx b/apps/web/app/api/emails/welcome/route.tsx
new file mode 100644
index 00000000..48883d6b
--- /dev/null
+++ b/apps/web/app/api/emails/welcome/route.tsx
@@ -0,0 +1,19 @@
+/** biome-ignore-all lint/performance/noImgElement: Not Next.js environment */
+import { ImageResponse } from "next/og";
+
+export async function GET() {
+ return new ImageResponse(
+ <div tw="w-full h-full flex flex-col justify-center items-center">
+ <img
+ src="https://pub-1be2b1df2c7e456f8e21149e972f4caf.r2.dev/bust.png"
+ alt="Google Logo"
+ height={367}
+ width={369}
+ />
+ </div>,
+ {
+ width: 1200,
+ height: 630,
+ },
+ );
+}