import { ImageResponse } from 'next/og'; import { ogMark } from '@/components/layout/logo'; export const runtime = 'nodejs'; export const alt = 'RareIndex โ€” The Global Market for Collectibles'; export const size = { width: 1200, height: 630 }; export const contentType = 'image/png'; /** Site-wide share card (Open Graph / Twitter): mark, wordmark, tagline and an index line. Static โ€” no database. */ export default function Image() { return new ImageResponse( (
{/* faint index line across the card */}
{ogMark(120)}
Rare Index
The Global Market for Collectibles
Prices, verified sales, live asks, rarity, liquidity and the RARE indices โ€” across marketplaces and auction houses, with confidence on every number.
{['RareIndex Valuation', 'Liquidity Score', 'Market Depth', 'Auction Intelligence', 'Screener'].map((t) => ( {t} ))}
www.rareindex.io Model estimates, not advice ยท Hosted on MacLustr
), { ...size }, ); }