SPB Git forge
3commits 1branches 0releases
417.0 KBsize
maindefault branch
10 days agolast push
TypeScript 66.5% Python 30.9% JavaScript 1.4% CSS 0.7%
882 B · 21 lines tsx
Raw Blame History
1import { ImageResponse } from 'next/og';23/** 180×180 PNG generated from the SatelliteIndex mark (planet + inclined ring + cyan node) on the space background. */4export const size = { width: 180, height: 180 };5export const contentType = 'image/png';67export default function AppleIcon() {8  return new ImageResponse(9    (10      <div style={{ width: 180, height: 180, display: 'flex', alignItems: 'center', justifyContent: 'center', background: '#060912', borderRadius: 40 }}>11        <svg width="132" height="132" viewBox="0 0 32 32" fill="none">12          <circle cx="16" cy="16" r="7.5" fill="#eaf0ff" opacity="0.92" />13          <ellipse cx="16" cy="16" rx="14" ry="5.2" stroke="#eaf0ff" strokeWidth="1.6" transform="rotate(-24 16 16)" opacity="0.85" />14          <circle cx="27.4" cy="9.6" r="2.3" fill="#38d3ff" />15        </svg>16      </div>17    ),18    { ...size },19  );20}21