/** * Apple touch icon (180×180) — also used as the PWA icon source. * * iOS Safari grabs when "Add to Home Screen" * is invoked. Next.js auto-wires this file to that link. */ import { ImageResponse } from 'next/og' export const runtime = 'edge' export const size = { width: 180, height: 180 } export const contentType = 'image/png' export default function AppleIcon() { return new ImageResponse( (
α
), { ...size }, ) }