63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { ImageResponse } from 'next/og';
|
|
import { NextRequest } from 'next/server';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
export async function GET(req: NextRequest) {
|
|
const { searchParams } = req.nextUrl;
|
|
const title = searchParams.get('title');
|
|
const description = searchParams.get('description');
|
|
const font = fetch(new URL('./mono.ttf', import.meta.url)).then((res) =>
|
|
res.arrayBuffer(),
|
|
);
|
|
const fontData = await font;
|
|
|
|
return new ImageResponse(
|
|
(
|
|
<div
|
|
tw="flex h-full w-full bg-black text-white"
|
|
style={{ fontFamily: 'Geist Sans' }}
|
|
>
|
|
<div tw="flex border absolute border-stone-700 border-dashed inset-y-0 left-16 w-[1px]" />
|
|
<div tw="flex border absolute border-stone-700 border-dashed inset-y-0 right-16 w-[1px]" />
|
|
<div tw="flex border absolute border-stone-700 inset-x-0 h-[1px] top-16" />
|
|
<div tw="flex border absolute border-stone-700 inset-x-0 h-[1px] bottom-16" />
|
|
<div tw="flex absolute flex-row bottom-24 right-24 text-white"></div>
|
|
<div tw="flex flex-col absolute w-[896px] justify-center inset-32">
|
|
<div
|
|
tw="tracking-tight flex-grow-1 flex flex-col justify-center leading-[1.1]"
|
|
style={{
|
|
textWrap: 'balance',
|
|
fontWeight: 600,
|
|
fontSize: title && title.length > 20 ? 64 : 80,
|
|
letterSpacing: '-0.04em',
|
|
}}
|
|
>
|
|
{title}
|
|
</div>
|
|
<div
|
|
tw="text-[40px] leading-[1.5] flex-grow-1 text-stone-400"
|
|
style={{
|
|
fontWeight: 500,
|
|
textWrap: 'balance',
|
|
}}
|
|
>
|
|
{`${description?.slice(0, 100)}`}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
),
|
|
{
|
|
width: 1200,
|
|
height: 628,
|
|
fonts: [
|
|
{
|
|
name: 'Jetbrains Mono',
|
|
data: fontData,
|
|
style: 'normal',
|
|
},
|
|
],
|
|
},
|
|
);
|
|
}
|