Clear notice that the service is not yet open for production use. Temporary — remove SiteBanner once live. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
829 B
TypeScript
24 lines
829 B
TypeScript
import type { Metadata } from 'next';
|
|
import { GeistSans } from 'geist/font/sans';
|
|
import { GeistMono } from 'geist/font/mono';
|
|
import { SiteBanner } from '@/components/site-banner';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'BuildMyMCPServer — Describe your tool. We host the server.',
|
|
description:
|
|
'From prompt to production MCP server in 60 seconds. OAuth 2.1, Streamable HTTP, ready for Claude, Cursor & ChatGPT.',
|
|
metadataBase: new URL(process.env.NEXT_PUBLIC_APP_URL ?? 'http://localhost:3001'),
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`} suppressHydrationWarning>
|
|
<body>
|
|
<SiteBanner />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|