import { api, safe } from '@/lib/api'; import { OG_ALT, OG_CONTENT_TYPE, OG_SIZE, renderSiteOg } from '@/lib/og'; /** Root Open Graph image: brand lockup, headline, live counters from /stats (brand-only when the API is down). */ export const alt = OG_ALT; export const size = OG_SIZE; export const contentType = OG_CONTENT_TYPE; export default async function OpenGraphImage() { return renderSiteOg(await safe(api.stats())); }