diff --git a/benchmarks/with-uniconsent/app/layout.tsx b/benchmarks/with-uniconsent/app/layout.tsx new file mode 100644 index 0000000..bcc7d59 --- /dev/null +++ b/benchmarks/with-uniconsent/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from "next"; +import type { ReactNode } from "react"; + +export const metadata: Metadata = { + title: "benchmark", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: ReactNode; +}>) { + return ( + + + {/* biome-ignore lint/nursery/noSyncScripts: UniConsent's install snippet requires synchronous stubs before the CMP script. */} +