diff --git a/benchmarks/with-dgp-cookie-consent/app/favicon.ico b/benchmarks/with-dgp-cookie-consent/app/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/benchmarks/with-dgp-cookie-consent/app/favicon.ico differ diff --git a/benchmarks/with-dgp-cookie-consent/app/layout.tsx b/benchmarks/with-dgp-cookie-consent/app/layout.tsx new file mode 100644 index 0000000..38a7002 --- /dev/null +++ b/benchmarks/with-dgp-cookie-consent/app/layout.tsx @@ -0,0 +1,84 @@ +import type { Metadata } from "next"; +import Script from "next/script"; +import type { ReactNode } from "react"; + +export const metadata: Metadata = { + title: "benchmark", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: ReactNode; +}>) { + return ( + + + {/** Add custom styles to consent-dialog to allow benchmarking, cuz selecting elements inside shadow DOM is not yet supported */} + + +