From 86987256664cde9f57509efd7564cfa01e510ec9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 05:09:05 +0000 Subject: [PATCH 1/3] Initial plan From d7ec8a2e61fc1a9b9fa21160b3e0feeef90f8768 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 05:13:24 +0000 Subject: [PATCH 2/3] Add beta notice banner to official website Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- apps/site/app/layout.tsx | 2 ++ apps/site/components/beta-banner.tsx | 34 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 apps/site/components/beta-banner.tsx diff --git a/apps/site/app/layout.tsx b/apps/site/app/layout.tsx index 22fdca31..99503431 100644 --- a/apps/site/app/layout.tsx +++ b/apps/site/app/layout.tsx @@ -1,6 +1,7 @@ import { RootProvider } from 'fumadocs-ui/provider/next'; import './global.css'; import { Inter } from 'next/font/google'; +import { BetaBanner } from '@/components/beta-banner'; const inter = Inter({ subsets: ['latin'], @@ -10,6 +11,7 @@ export default function Layout({ children }: LayoutProps<'/'>) { return ( + {children} diff --git a/apps/site/components/beta-banner.tsx b/apps/site/components/beta-banner.tsx new file mode 100644 index 00000000..ea058bae --- /dev/null +++ b/apps/site/components/beta-banner.tsx @@ -0,0 +1,34 @@ +import Link from 'next/link'; +import { X } from 'lucide-react'; + +export function BetaBanner() { + return ( +
+
+
+
+ + β + +

+ + ObjectQL v2.0 is currently in Beta.{' '} + + + We're actively developing new features and improving stability. + +

+
+
+ + Get Started + +
+
+
+
+ ); +} From de1972a4bc352a0c1f66c9bc2da8ed862d972faa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 05:14:16 +0000 Subject: [PATCH 3/3] Remove unused import from beta-banner component Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- apps/site/components/beta-banner.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/site/components/beta-banner.tsx b/apps/site/components/beta-banner.tsx index ea058bae..9dd5a2c6 100644 --- a/apps/site/components/beta-banner.tsx +++ b/apps/site/components/beta-banner.tsx @@ -1,5 +1,4 @@ import Link from 'next/link'; -import { X } from 'lucide-react'; export function BetaBanner() { return (