import { ImageResponse } from "next/og"; import { BRAND_NAME, BRAND_TAGLINE } from "@/lib/brand"; export const size = { width: 1200, height: 630 }; export const contentType = "image/png"; export default function OpenGraphImage() { return new ImageResponse( (
{BRAND_NAME}
{BRAND_TAGLINE}
), size, ); }