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..9dd5a2c6 --- /dev/null +++ b/apps/site/components/beta-banner.tsx @@ -0,0 +1,33 @@ +import Link from 'next/link'; + +export function BetaBanner() { + return ( +
+
+
+
+ + β + +

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

+
+
+ + Get Started + +
+
+
+
+ ); +}