buildmymcpserver/apps/web/app/(marketing)/guides/mcp-server-ohne-code-erstellen/opengraph-image.tsx

14 lines
379 B
TypeScript
Raw Normal View History

import { articleOgImage, OG_SIZE } from '@/lib/og-article';
export const runtime = 'edge';
export const alt = 'MCP Server ohne Code erstellen und hosten (2026)';
export const size = OG_SIZE;
export const contentType = 'image/png';
export default function Image() {
return articleOgImage({
title: 'MCP Server ohne Code erstellen und hosten',
tag: 'Anleitung',
});
}