buildmymcpserver/apps/web/app/(marketing)/guides/mintmcp-alternative/opengraph-image.tsx

14 lines
408 B
TypeScript
Raw Permalink Normal View History

import { articleOgImage, OG_SIZE } from '@/lib/og-article';
export const runtime = 'edge';
export const alt = 'MintMCP alternative: generate and host a custom MCP server';
export const size = OG_SIZE;
export const contentType = 'image/png';
export default function Image() {
return articleOgImage({
title: 'MintMCP alternative: generate and host a custom MCP server',
tag: 'Alternative',
});
}