import { ImageResponse } from '@vercel/og' export const config = { runtime: 'experimental-edge', } export default async function handler() { return new ImageResponse( ( // Modified based on https://tailwindui.com/components/marketing/sections/cta-sections

Ready to dive in? Start your free trial today.

Get started
Learn more
), { width: 1200, height: 630, } ) }