From cd428d5ba3305fa764fdd55789da9d347c59510b Mon Sep 17 00:00:00 2001 From: Marco Sadjadi Date: Thu, 21 May 2026 18:57:49 +0200 Subject: [PATCH] =?UTF-8?q?style(web):=20biome=20=E2=80=94=20drop=20redund?= =?UTF-8?q?ant=20role,=20format=20banner=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/web/app/layout.tsx | 12 ++++++++---- apps/web/components/site-banner.tsx | 9 +++------ 2 files changed, 11 insertions(+), 10 deletions(-) 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.
); }