2026-05-21 18:57:16 +02:00
|
|
|
// Temporary pre-launch notice. Remove this component and its import in
|
|
|
|
|
// app/layout.tsx once the service is open for production use.
|
2026-05-21 19:31:34 +02:00
|
|
|
// Background is #4f46e5 (not the #6366f1 accent) so white text clears the
|
|
|
|
|
// WCAG AA 4.5:1 contrast ratio for this small text — #6366f1 fell just short.
|
2026-05-21 18:57:16 +02:00
|
|
|
export function SiteBanner() {
|
|
|
|
|
return (
|
2026-05-21 19:01:50 +02:00
|
|
|
<div
|
2026-05-21 19:31:34 +02:00
|
|
|
style={{ backgroundColor: '#4f46e5' }}
|
|
|
|
|
className="border-b border-[#4338ca] px-4 py-2 text-center text-[12.5px] font-medium leading-snug text-white"
|
2026-05-21 19:01:50 +02:00
|
|
|
>
|
2026-05-21 18:57:16 +02:00
|
|
|
<span className="font-semibold uppercase tracking-wide">Preview</span>
|
2026-05-21 19:31:34 +02:00
|
|
|
<span className="px-1.5">·</span>
|
2026-05-21 18:57:49 +02:00
|
|
|
BuildMyMCPServer is not yet open for production use — sign-ups, server generation and billing
|
|
|
|
|
are still being finalised, and data may be reset.
|
2026-05-21 18:57:16 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|