v3.3.1 — Latest

Documentation

Everything you need to build NDPA 2023-compliant applications — component API references, implementation guides, adapter recipes, and NDPC best practices.

Search documentation...⌘K
What's New in v3.3.1

Everything new in the latest release

Six major capabilities added to make NDPA compliance faster, more flexible, and production-ready.

Getting Started

Up and running in 3 steps

From zero to NDPA-compliant in under 5 minutes. No configuration required.

01

Install

terminal
bash
pnpm add @tantainnovative/ndpr-toolkit
02

Add Provider

app/layout.tsx
tsx
import { NDPRProvider } from '@tantainnovative/ndpr-toolkit';

export default function RootLayout({ children }) {
  return (
    <NDPRProvider config={{ organizationName: 'Acme Corp' }}>
      {children}
    </NDPRProvider>
  );
}
03

Add Preset

app/page.tsx
tsx
import { NDPRConsent } from '@tantainnovative/ndpr-toolkit';

export default function Page() {
  return (
    <>
      <NDPRConsent />
      {/* your page content */}
    </>
  );
}
View all guides
Component Guides

8 compliance modules, fully documented

Each module maps to specific NDPA 2023 obligations, complete with props reference and usage examples.

View all components
Implementation Guides

Deep-dive implementation patterns

Advanced patterns for adapters, presets, backend recipes, and full NDPA compliance strategies.

View all guides
Ready to build?

Start shipping compliant features today

8 modules, 788+ tests, zero-config presets — everything you need to be NDPA 2023 compliant from day one.

$pnpm add @tantainnovative/ndpr-toolkit