feat: Add experimental warning banner

This commit is contained in:
Jesse Wierzbinski 2024-07-24 15:13:24 +02:00
parent 850efb4bd3
commit 6b0e6785e2
No known key found for this signature in database
3 changed files with 25 additions and 1 deletions

View file

@ -5,6 +5,7 @@ import Link from "next/link";
import { usePathname } from "next/navigation";
import type { ReactNode } from "react";
import { ExperimentalWarning } from "./ExperimentalWarning";
import { Footer } from "./Footer";
import { Header } from "./Header";
import { Logo } from "./Logo";
@ -42,6 +43,7 @@ export function Layout({
<Footer />
</div>
</div>
<ExperimentalWarning />
</SectionProvider>
);
}