15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
|
|
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;
|
||
|
|
}
|