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