import { ImageResponse } from 'next/og' export const runtime = 'nodejs' export const alt = 'Fibe — Idea to live app in 60 seconds. No code required.' export const size = { width: 1200, height: 630 } export const contentType = 'image/png' export default function Image() { return new ImageResponse( (
{/* Grid overlay */}
{/* Glow orb */}
{/* Content */}
{/* Logo */}
f
{/* Headline */}
Idea to live app.
Sixty seconds.
{/* Sub */}
No code required. AI Genies build it. Fibe ships it.
{/* Provider pills */}
{['DigitalOcean', 'AWS', 'GCP', 'Azure', 'Any VPS'].map((p) => (
{p}
))}
{/* Domain */}
fibe.me
), { ...size } ) }