mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-19 07:42:43 +00:00
19 lines
438 B
TypeScript
19 lines
438 B
TypeScript
/** biome-ignore-all lint/performance/noImgElement: Not Next.js environment */
|
|
import { ImageResponse } from "next/og"
|
|
|
|
export async function GET() {
|
|
return new ImageResponse(
|
|
<div tw="size-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,
|
|
},
|
|
)
|
|
}
|