import { ImageResponse } from "next/og"; export const size = { width: 32, height: 32 }; export const contentType = "image/png"; export default function Icon() { return new ImageResponse( (
{/* Ground line */}
{/* Lift hill — semicircle bump */}
{/* Vertical loop — circle outline */}
), { width: 32, height: 32 }, ); }