buildmymcpserver/apps/web/app/templates/layout.tsx

15 lines
512 B
TypeScript
Raw Normal View History

import { pageMetadata } from '@/lib/seo';
// templates/page.tsx is a client component and cannot export metadata itself —
// this layout carries it.
export const metadata = pageMetadata({
title: 'Template marketplace',
description:
'Browse the BuildMyMCPServer template marketplace — fork a ready-made MCP server, add your own credentials and deploy in seconds.',
path: '/templates',
});
export default function TemplatesLayout({ children }: { children: React.ReactNode }) {
return children;
}