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

14 lines
376 B
TypeScript
Raw Normal View History

import { articleOgImage, OG_SIZE } from '@/lib/og-article';
export const runtime = 'edge';
export const alt = 'Composio alternative for bespoke MCP tools';
export const size = OG_SIZE;
export const contentType = 'image/png';
export default function Image() {
return articleOgImage({
title: 'Composio alternative for bespoke MCP tools',
tag: 'Alternative',
});
}