cookie-consent/examples/next-app/app/page.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

20 lines
730 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { CookieSettingsButton } from "./providers";
export default function HomePage() {
return (
<main style={{ maxWidth: 720, margin: "48px auto", padding: "0 24px", fontFamily: "system-ui, sans-serif" }}>
<h1>Cookie Consent Demo</h1>
<p>
Bu örnek uygulama, <code>@pdntechnology/cookie-consent</code> paketinin Next.js
ile nasıl kullanılacağını gösterir. Türkçe metinler, özel tema renkleri ve çerez
envanteri tablosu etkinleştirilmiştir.
</p>
<p>
Sayfayı ilk kez açtığınızda banner görünür. Tercih kaydedildikten sonra aşağıdaki
buton ile paneli yeniden açabilirsiniz.
</p>
<CookieSettingsButton />
</main>
);
}