cookie-consent/examples/next-app/app/layout.jsx
Pdn Technology 9a001197e1
Some checks are pending
CI / test (20) (push) Waiting to run
CI / test (22) (push) Waiting to run
Tema ayarları eklendi
2026-06-20 08:58:11 +03:00

21 lines
523 B
JavaScript

import "@pdntechnology/cookie-consent/styles.css";
import "@/lib/consent-config";
import { ConsentBootstrap } from "@pdntechnology/cookie-consent/react";
import { Providers } from "./providers";
export const metadata = {
title: "Cookie Consent Demo",
description: "Next.js demo for @pdntechnology/cookie-consent",
};
export default function RootLayout({ children }) {
return (
<html lang="tr">
<body>
<ConsentBootstrap />
<Providers>{children}</Providers>
</body>
</html>
);
}