import { ImageResponse } from 'next/og'
export const runtime = 'edge'
export const alt = 'Trump Alpha โ Four crypto alpha feeds, one dashboard'
export const size = { width: 1200, height: 630 }
export const contentType = 'image/png'
export default function OGImage() {
return new ImageResponse(
(
{/* Background grid */}
{/* Ambient glow */}
{/* Top-right corner badge */}
{/* Four signal pills */}
{[
{ label: 'Trump ยท Truth Social', color: '#f5a524' },
{ label: 'BTC Bottom Reversal', color: '#a78bfa' },
{ label: 'KOL Signal', color: '#22c55e' },
{ label: 'Talks vs Trades', color: '#ef4444' },
].map((p) => (
{p.label}
))}
{/* Main title */}
Trump Alpha
{/* Sub */}
Four crypto alpha feeds. AI-scored in real time.
One dashboard โ zero noise.
{/* Bottom right stat strip */}
{[
{ v: '<3s', l: 'post โ position' },
{ v: '15', l: 'KOL feeds' },
{ v: '$0', l: 'platform fee' },
].map((s) => (
{s.v}
{s.l}
))}
),
{ ...size },
)
}