=== NEW === - studio/ — MCPEngine Studio scaffold (Next.js monorepo, build plan) - docs/FACTORY-V2.md — Factory v2 architecture doc - docs/CALENDLY_MCP_BUILD_SUMMARY.md — Calendly MCP build report === UPDATED SERVERS === - fieldedge: Added jobs-tools, UI build script, main entry update - lightspeed: Updated main + server entry points - squarespace: Added collection-browser + page-manager apps - toast: Added main + server entry points === INFRA === - infra/command-center/state.json — Updated pipeline state - infra/command-center/FACTORY-V2.md — Factory v2 operator playbook
22 lines
577 B
TypeScript
22 lines
577 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'MCPEngine Studio — Build MCP Servers Visually',
|
|
description: 'The no-code visual builder for MCP servers and MCP Apps. 37 templates, drag-and-drop, deploy in 60 seconds.',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className="min-h-screen bg-[var(--surface-0)] text-[var(--text-primary)] antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|