import { ImageResponse } from 'next/server' export const alt = 'Twitter' export const size = { width: 1600, height: 900 } export default function twitter() { return new ImageResponse( (
Twitter Image
), size ) }