buildmymcpserver/apps/web/app/(marketing)/status/layout.tsx

15 lines
460 B
TypeScript
Raw Permalink Normal View History

import { pageMetadata } from '@/lib/seo';
// status/page.tsx is a client component and cannot export metadata itself —
// this layout carries it.
export const metadata = pageMetadata({
title: 'Status',
description:
'Live operational status of BuildMyMCPServer — control plane, build pipeline and hosted MCP servers.',
path: '/status',
});
export default function StatusLayout({ children }: { children: React.ReactNode }) {
return children;
}