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>
|
|
);
|
|
}
|