mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
feat: add initial og image for share link
This commit is contained in:
5
apps/web/src/api/og/route.ts
Normal file
5
apps/web/src/api/og/route.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { NextResponse } from 'next/server';
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({ hello: 'world' });
|
||||
}
|
||||
51
apps/web/src/app/(share)/api/share/route.tsx
Normal file
51
apps/web/src/app/(share)/api/share/route.tsx
Normal file
@ -0,0 +1,51 @@
|
||||
import { ImageResponse } from 'next/server';
|
||||
|
||||
export const config = {
|
||||
runtime: 'edge',
|
||||
};
|
||||
|
||||
export async function GET() {
|
||||
const [imageData, fontData] = await Promise.all([
|
||||
fetch(new URL('../../../../assets/background-pattern.png', import.meta.url)).then((res) =>
|
||||
res.arrayBuffer(),
|
||||
),
|
||||
fetch(new URL('../../../assets/Caveat-Regular.ttf', import.meta.url)).then((res) =>
|
||||
res.arrayBuffer(),
|
||||
),
|
||||
]);
|
||||
|
||||
return new ImageResponse(
|
||||
(
|
||||
<div
|
||||
style={{
|
||||
height: '100%',
|
||||
width: '100%',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
background: `url('data:image/png;base64,${Buffer.from(
|
||||
imageData as unknown as string,
|
||||
).toString('base64')}')`,
|
||||
backgroundSize: '1200px 850px',
|
||||
backgroundPositionY: '0%',
|
||||
}}
|
||||
>
|
||||
<div tw="p-16 border-solid border-2 border-sky-500">
|
||||
<div tw=" text-[#64748B99]">Duncan</div>
|
||||
</div>
|
||||
</div>
|
||||
),
|
||||
{
|
||||
width: 1200,
|
||||
height: 630,
|
||||
fonts: [
|
||||
{
|
||||
name: 'Caveat',
|
||||
data: fontData,
|
||||
style: 'italic',
|
||||
},
|
||||
],
|
||||
},
|
||||
);
|
||||
}
|
||||
9
apps/web/src/app/(share)/share/page.tsx
Normal file
9
apps/web/src/app/(share)/share/page.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
export default async function SharePage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Share Page</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
BIN
apps/web/src/assets/Caveat-Regular.ttf
Normal file
BIN
apps/web/src/assets/Caveat-Regular.ttf
Normal file
Binary file not shown.
BIN
apps/web/src/assets/Inter-Regular.ttf
Normal file
BIN
apps/web/src/assets/Inter-Regular.ttf
Normal file
Binary file not shown.
BIN
apps/web/src/assets/background-pattern-og.png
Normal file
BIN
apps/web/src/assets/background-pattern-og.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.3 MiB |
62
apps/web/src/pages/api/share-og/index.tsx
Normal file
62
apps/web/src/pages/api/share-og/index.tsx
Normal file
@ -0,0 +1,62 @@
|
||||
import { ImageResponse } from 'next/server';
|
||||
|
||||
export const config = {
|
||||
runtime: 'edge',
|
||||
};
|
||||
|
||||
export default async function handler() {
|
||||
const [imageData, CaveatFontData, InterFontData] = await Promise.all([
|
||||
fetch(new URL('../../../assets/background-pattern-og.png', import.meta.url)).then((res) =>
|
||||
res.arrayBuffer(),
|
||||
),
|
||||
fetch(new URL('../../../assets/Caveat-Regular.ttf', import.meta.url)).then((res) =>
|
||||
res.arrayBuffer(),
|
||||
),
|
||||
fetch(new URL('../../../assets/Inter-Regular.ttf', import.meta.url)).then((res) =>
|
||||
res.arrayBuffer(),
|
||||
),
|
||||
]);
|
||||
|
||||
return new ImageResponse(
|
||||
(
|
||||
<div
|
||||
style={{
|
||||
height: '100%',
|
||||
width: '100%',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
background: `url('data:image/png;base64,${Buffer.from(
|
||||
imageData as unknown as string,
|
||||
).toString('base64')}')`,
|
||||
backgroundSize: '1200px 630px',
|
||||
backgroundPositionY: '0%',
|
||||
}}
|
||||
>
|
||||
<div tw="flex px-20 py-12 bg-gray-100 rounded-md border-solid border-4 border-zinc-200 shadow-md">
|
||||
<div tw="text-[#64748B99] text-7xl">Duncan</div>
|
||||
</div>
|
||||
<div tw="text-black text-3xl my-8 text-gray-600" style={{ fontFamily: 'Inter' }}>
|
||||
You signed with Documenso
|
||||
</div>
|
||||
</div>
|
||||
),
|
||||
{
|
||||
width: 1200,
|
||||
height: 630,
|
||||
fonts: [
|
||||
{
|
||||
name: 'Caveat',
|
||||
data: CaveatFontData,
|
||||
style: 'italic',
|
||||
},
|
||||
{
|
||||
name: 'Inter',
|
||||
data: InterFontData,
|
||||
style: 'normal',
|
||||
},
|
||||
],
|
||||
},
|
||||
);
|
||||
}
|
||||
1
packages/lib/types/font.d.ts
vendored
Normal file
1
packages/lib/types/font.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
declare module '*.ttf';
|
||||
Reference in New Issue
Block a user