import { api, safe } from '@/lib/api'; import { OG_ALT, OG_CONTENT_TYPE, OG_SIZE, renderSiteOg } from '@/lib/og'; /** Twitter/X card image — same render as the Open Graph image (kept as its own route, nothing re-exported). */ export const alt = OG_ALT; export const size = OG_SIZE; export const contentType = OG_CONTENT_TYPE; export default async function TwitterImage() { return renderSiteOg(await safe(api.stats())); }