diff --git a/README.md b/README.md
index 48b4613..f0fec54 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,7 @@ npm install --save-prod react-executor
🔥 **Live examples**
- [TODO app](https://codesandbox.io/p/sandbox/react-executor-example-ltflgy)
- [Streaming SSR](https://codesandbox.io/p/devbox/react-executor-ssr-streaming-example-mwrmrs)
+- [Next.js integration](https://codesandbox.io/p/devbox/react-executor-next-example-whsj4v)
🔰 [**Introduction**](#introduction)
@@ -59,6 +60,7 @@ npm install --save-prod react-executor
- [Streaming SSR](#streaming-ssr)
- [State serialization](#state-serialization)
- [Content-Security-Policy support](#content-security-policy-support)
+- [Next.js integration](#nextjs-integration)
⚙️ [**Devtools**](#devtools)
@@ -1653,6 +1655,60 @@ Send the header with this nonce in the server response:
Content-Security-Policy: script-src 'nonce-2726c7f26c'
```
+## Next.js integration
+
+> [!TIP]\
+> Check out the live example
+> of [the Next.js app](https://codesandbox.io/p/devbox/react-executor-next-example-whsj4v) that showcases
+> streaming SSR with React Executor.
+
+To enable client hydration in Next.js, use [`@react-executor/next`](https://github.com/smikhalevski/react-executor-next)
+package.
+
+First, provide
+an [`ExecutorManager`](https://smikhalevski.github.io/react-executor/classes/react_executor.ExecutorManager.html):
+
+```tsx
+// providers.tsx
+'use client';
+
+import { ReactNode } from 'react';
+import { enableSSRHydration, ExecutorManager, ExecutorManagerProvider } from 'react-executor';
+import { SSRExecutorManager } from 'react-executor/ssr';
+import { ExecutorHydrator } from '@react-executor/next';
+
+const manager = typeof window !== 'undefined' ? enableSSRHydration(new ExecutorManager()) : undefined;
+
+export function Providers(props: { children: ReactNode }) {
+ return (
+