mirror of
https://github.com/LukeHagar/sveltekit-og.git
synced 2025-12-06 12:47:49 +00:00
43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
import { toReactElement, satori } from '@ethercorps/sveltekit-og';
|
|
const htmlString = `
|
|
<div tw="bg-gray-50 flex w-full">
|
|
<div tw="flex flex-col md:flex-row w-full py-12 px-4 md:items-center justify-between p-8">
|
|
<h2 tw="flex flex-col text-3xl sm:text-4xl font-bold tracking-tight text-gray-900 text-left">
|
|
<span>Ready to dive in?</span>
|
|
<span tw="text-indigo-600">Start your free trial today.</span>
|
|
</h2>
|
|
<div tw="mt-8 flex md:mt-0">
|
|
<div tw="flex rounded-md shadow">
|
|
<a tw="flex items-center justify-center rounded-md border border-transparent bg-indigo-600 px-5 py-3 text-base font-medium text-white">Get started</a>
|
|
</div>
|
|
<div tw="ml-3 flex rounded-md shadow">
|
|
<a tw="flex items-center justify-center rounded-md border border-transparent bg-white px-5 py-3 text-base font-medium text-indigo-600">Learn more</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
const newNode = toReactElement(htmlString);
|
|
|
|
/** @type {import('./$types').PageServerLoad} */
|
|
export async function load() {
|
|
const fontFile400 = await fetch(
|
|
'https://og-playground.vercel.app/inter-latin-ext-400-normal.woff'
|
|
);
|
|
const fontData400 = await fontFile400.arrayBuffer();
|
|
const svg = await satori(newNode, {
|
|
height: 350,
|
|
width: 500,
|
|
fonts: [
|
|
{
|
|
name: 'sans serif',
|
|
data: fontData400,
|
|
style: 'normal',
|
|
weight: 700
|
|
}
|
|
]
|
|
});
|
|
|
|
return { svg };
|
|
}
|