refactor: 🔥 Remove experimental warning

This commit is contained in:
Jesse Wierzbinski 2024-08-28 18:28:11 +02:00
parent 33c2015274
commit 4a6a1f07a0
No known key found for this signature in database
2 changed files with 0 additions and 23 deletions

View file

@ -5,7 +5,6 @@ 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";
@ -43,7 +42,6 @@ export function Layout({
<Footer />
</div>
</div>
<ExperimentalWarning />
</SectionProvider>
);
}