import { ImageResponse } from "next/og";
export const runtime = "edge";
export const alt =
"MB Grid Solutions | Energiekabelprojekte & Technische Beratung";
export const size = {
width: 1200,
height: 630,
};
export const contentType = "image/png";
export default async function Image() {
return new ImageResponse(
{/* Grid Pattern Background - matching .grid-pattern in globals.css */}
{/* Content Container - matching .card-modern / .glass-panel style */}
{/* Engineering Excellence Badge */}
{/* Brand Mark */}
{/* Title */}
MB Grid{" "}
Solutions
{/* Subtitle */}
Energiekabelprojekte & Technische Beratung
bis 110 kV
{/* Tech Lines - matching .tech-line style */}
,
{
...size,
},
);
}