import { ImageResponse } from "next/og"; // Static social-share image for the site (1200×630). // Next.js exposes this as og:image and twitter:image automatically. export const alt = "Tenext Technologies — Enterprise Digital Transformation"; export const size = { width: 1200, height: 630 }; export const contentType = "image/png"; export default function OpengraphImage() { return new ImageResponse( (
Tenext Technologies
Engineering predictable outcomes from your digital investments
Cloud · Data · AI · Product Engineering · Digital Commerce
), { ...size } ); }