diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index 278dcbb..1f41aab 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -1,7 +1,7 @@ -import type { Metadata } from 'next'; -import { GeistSans } from 'geist/font/sans'; -import { GeistMono } from 'geist/font/mono'; import { SiteBanner } from '@/components/site-banner'; +import { GeistMono } from 'geist/font/mono'; +import { GeistSans } from 'geist/font/sans'; +import type { Metadata } from 'next'; import './globals.css'; export const metadata: Metadata = { @@ -13,7 +13,11 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - + {children} diff --git a/apps/web/components/site-banner.tsx b/apps/web/components/site-banner.tsx index 1cdc62c..5990dc7 100644 --- a/apps/web/components/site-banner.tsx +++ b/apps/web/components/site-banner.tsx @@ -2,14 +2,11 @@ // app/layout.tsx once the service is open for production use. export function SiteBanner() { return ( -
+
Preview · - BuildMyMCPServer is not yet open for production use — sign-ups, server - generation and billing are still being finalised, and data may be reset. + BuildMyMCPServer is not yet open for production use — sign-ups, server generation and billing + are still being finalised, and data may be reset.
); }