import { ImageResponse } from 'next/og'; import { MARK_DARK, MarkImg } from '@/components/brand/mark'; /** 180×180 PNG: the atlas-plate mark on the dark canvas (iOS applies its own corner mask, so the plate fills the tile). */ export const size = { width: 180, height: 180 }; export const contentType = 'image/png'; export default function AppleIcon() { return new ImageResponse( (
), { ...size }, ); }