import { ImageResponse } from "next/og"; export const runtime = "edge"; export const alt = "FlatRender — AI Video & Image Maker"; export const size = { width: 1200, height: 630 }; export const contentType = "image/png"; export default function OpenGraphImage() { return new ImageResponse( (
{/* Logo mark row */}
{/* Icon */}
{/* Play triangle */}
FlatRender
{/* Main headline */}
Create pro videos & images with AI
{/* Subtitle */}
Templates, editors, and one-click export for every channel
{/* Bottom pill tags */}
{["Video Maker", "Image Maker", "AI Templates", "One-click Export"].map( (tag) => (
{tag}
) )}
), { ...size } ); }