import { ImageResponse } from 'next/og'; /** 180×180 PNG generated from the SatelliteIndex mark (planet + inclined ring + cyan node) on the space background. */ export const size = { width: 180, height: 180 }; export const contentType = 'image/png'; export default function AppleIcon() { return new ImageResponse( (
), { ...size }, ); }