import { ImageResponse } from "next/og"; import { COLORS, BRAND } from "@/lib/constants"; export const size = { width: 64, height: 64 }; export const contentType = "image/png"; export default function Icon() { return new ImageResponse( (
{BRAND.emoji}
), size ); }