> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://contentful.com/developers/docs/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://contentful.com/developers/docs/_mcp/server.

# Integrate the Optimization Next.js SDK in a Next.js Pages Router app

## Overview

Use this guide to render Contentful entries with personalized `getServerSideProps` first paint in a
Next.js Pages Router app, then hydrate the browser from the same Optimization handoff.

**New to personalization?** Here is the breakdown of how it works:

* In Contentful you author **variants** of an entry and attach them to an **experience** - a rule
  that decides which visitors see which variant.
* When a page is requested, Contentful's **Experience API** looks at the request context and picks
  the variant for each experience. Swapping a fetched entry for its picked variant is called
  **resolving** the entry.
* Your app hands a Contentful entry to the SDK at the point where that entry becomes output. The SDK
  gives back the selected variant, or the original entry when no variant applies - the **baseline
  fallback**. You can fetch the entry yourself or give the SDK your Contentful client and an entry
  ID; either way, the client stays yours.
* You render the returned entry with the same application components you already use.

That is enough to start. The guide introduces policy and optional capabilities at the point you need
them.

You will get there in two milestones:

* **Milestone 1 - Server-resolved first paint and matching hydration.** The quick start below is
  shippable when your policy allows server personalization.
* **Milestone 2 - Opt-in browser re-personalization after hydration.** See
  [Browser takeover and live updates](#browser-takeover-and-live-updates).

This guide uses `@contentful/optimization-nextjs/pages-router` in browser-facing files and
`@contentful/optimization-nextjs/pages-router/server` in `getServerSideProps` helpers. The adapter
binds app-local configured components and a request handoff helper; your app still owns Contentful
fetching, consent policy, and response caching. If you use the App Router, use the
[Next.js App Router guide](/personalization/optimization-sdk/integrate-the-optimization-sdk-in-a-nextjs-app-router-app/)
instead.

## Quick start

This quick start assumes a Pages Router page already fetches a Contentful entry in
`getServerSideProps` and renders it with your own component. The proof is one entry whose variant
appears in View Source and stays stable after hydration. Consent is granted only to prove the wiring;
replace it in [Consent, identity, profile, and reset](#consent-identity-profile-and-reset).

1. Install the package and keep `contentful` app-owned.

   **Copy this:**

   ```sh
   pnpm add @contentful/optimization-nextjs contentful
   ```

2. Bind the browser-facing module for `_app.tsx` and page components. This binding shares one
   configured helper set for the app; it is not a per-route or per-visitor isolation context.

   **Adapt this to your use case:**

   ```tsx
   // lib/optimization.ts
   import { bindNextjsPagesRouterOptimization } from '@contentful/optimization-nextjs/pages-router'

   export const { NextPagesAutoPageTracker, OptimizationRoot, OptimizedEntry } =
     bindNextjsPagesRouterOptimization({
       clientId: process.env.NEXT_PUBLIC_OPTIMIZATION_CLIENT_ID!,
       environment: process.env.NEXT_PUBLIC_CONTENTFUL_ENVIRONMENT ?? 'main',
       locale: 'en-US',
       consent: {
         clientDefaults: { consent: true, persistenceConsent: true },
       },
     })
   ```

3. Bind the server helper for `getServerSideProps`. The server entry point is separate from the
   browser-facing module and returns a browser `handoff`. This binding configures the server helper
   set; it is not a per-request isolation context. The quick start keeps entry fetching in
   `getServerSideProps`; managed fetching is introduced later.

   **Adapt this to your use case:**

   ```ts
   // lib/optimization-server.ts
   import { bindNextjsPagesRouterServerOptimization } from '@contentful/optimization-nextjs/pages-router/server'
   import type { GetServerSidePropsContext } from 'next'

   const { createRequestHandoff } = bindNextjsPagesRouterServerOptimization({
     clientId: process.env.NEXT_PUBLIC_OPTIMIZATION_CLIENT_ID!,
     environment: process.env.CONTENTFUL_ENVIRONMENT ?? 'main',
     locale: 'en-US',
     consent: {
       server: { events: true, persistence: true },
     },
   })

   export async function getContentfulOptimization(context: GetServerSidePropsContext) {
     const routeKey = context.resolvedUrl || context.req.url || '/'

     return {
       handoff: await createRequestHandoff(context, {
         cache: { scope: 'private-request' },
         hydration: 'preserve-server',
         pagePayload: { properties: { path: routeKey } },
       }),
     }
   }
   ```

4. Mount the bound root once in `_app.tsx`. When a handoff exists, the root owns the server's
   page-event decision. When no handoff exists, the separate route tracker emits the first browser
   page event and tracks later navigations.

   **Adapt this to your use case:**

   ```diff
   // pages/_app.tsx
   +import { NextPagesAutoPageTracker, OptimizationRoot } from '../../../../lib/optimization'
    import type { AppProps } from 'next/app'
   +import { useRouter } from 'next/router'

    export default function App({ Component, pageProps }: AppProps) {
   +  const router = useRouter()
   +  const routeKey = router.asPath || router.pathname
   +  const handoff = pageProps.contentfulOptimization?.handoff

      return (
   -    <Component {...pageProps} />
   +    <OptimizationRoot
   +      buildPagePayload={() => ({ properties: { path: routeKey } })}
   +      handoff={handoff}
   +      routeKey={routeKey}
   +    >
   +      <NextPagesAutoPageTracker initialPageEvent={handoff ? 'skip' : 'emit'} />
   +      <Component {...pageProps} />
   +    </OptimizationRoot>
      )
    }
   ```

5. Merge the Optimization handoff with your page props.

   **Adapt this to your use case:**

   ```diff
   // pages/index.tsx
   +import { getContentfulOptimization } from '../../../../lib/optimization-server'

    export async function getServerSideProps(context) {
      const hero = await getHeroEntry({ locale: 'en-US', include: 10 })
   +  const contentfulOptimization = await getContentfulOptimization(context)

      return {
        props: {
   +      contentfulOptimization,
          hero,
        },
      }
    }
   ```

6. Wrap the entry renderer. A **render prop** is the function child `{(entry) => ...}`; it lets you
   render the resolved entry with your existing component.
   This shortcut assumes the baseline and every eligible variant use the `hero` content type. If a
   variant can use another content type, follow the skeleton-union and narrowing path in
   [Personalizing entries](#personalizing-entries).

   **Adapt this to your use case:**

   ```diff
   // pages/index.tsx
   +import { OptimizedEntry } from '../../../../lib/optimization'
    import { Hero } from '../../../../components/Hero'

    export default function HomePage({ hero }) {
      return (
   -    <Hero entry={hero} />
   +    <OptimizedEntry baselineEntry={hero}>
   +      {(resolvedHero) => <Hero entry={resolvedHero} />}
   +    </OptimizedEntry>
      )
    }
   ```

7. Verify the result. In Contentful, target the experience to all visitors and give the variant a
   distinctive text value. Run the app, open View Source, and find that variant text in the raw HTML.
   Then load the page normally and confirm the same text remains after hydration.

## Before you start

The sections below walk the integration in order. First, gather the few things you can only get from
outside this guide:

* A Next.js Pages Router app with `getServerSideProps` on pages that need server-personalized first
  paint.
* A Contentful delivery client that can fetch the baseline entries your pages render.
* Contentful space, environment, delivery token, and one concrete locale. Fetch entries with that
  locale and enough `include` depth for linked Optimization entries and variants.
* **At least one entry with a variant attached to an experience**, authored in Contentful. Without
  an authored variant, the integration can still run correctly while returning the baseline, so you
  cannot yet distinguish working personalization from a content-authoring gap. For the first
  personalized-content test, target all visitors so the test request or visitor matches automatically.
* **Your Optimization project values** — client ID and environment, from your Optimization project
  settings. Find them in the Contentful web app under **Apps → Installed apps → Contentful
  Personalization → SDK keys**. The client ID and environment are safe to expose to the browser.

  The Experience and Insights API base URLs default correctly; you only set them for mocks or
  non-default hosts (see [How the SDK fits your app](#how-the-sdk-fits-your-app)).

You do not need a setup inventory up front. Everything else — the server helper, the root, entry
wrapping, consent, tracking — is introduced by the section that needs it.

Match your app's browser environment-variable convention. Next.js exposes `NEXT_PUBLIC_*` values to the browser; unprefixed server values stay server-only.

## Core integration

### How the SDK fits your app

**Integration category:** Required for first integration

Pages Router integrations have an explicit client/server split:

| Import path                                           | Use                                                                                                          |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| `@contentful/optimization-nextjs/pages-router`        | Browser-facing binding for `_app.tsx`, route tracker, roots, `OptimizedEntry`, and selection helpers         |
| `@contentful/optimization-nextjs/pages-router/server` | Server helper for `getServerSideProps` request handoff, public permutation handoff, and selection resolution |
| `@contentful/optimization-nextjs/client`              | Browser-only hooks and lower-level React roots                                                               |
| `@contentful/optimization-nextjs/tracking-attributes` | Low-level `data-ctfl-*` attributes for analytics-only markup                                                 |

Use the server entrypoint only from server files. Use the browser-facing module for `_app.tsx` and
components.

### Fetching Contentful entries

**Integration category:** Required for first integration

Manual entry source is the usual Pages Router path: `getServerSideProps` fetches a baseline entry and
passes it through props, then the page renders it through `OptimizedEntry`.

Managed entry source is also available when the route knows an entry ID or a content type and slug.
Pass `prefetchManagedEntries` to `createRequestHandoff()` in `getServerSideProps`; the helper puts
the baseline snapshots in `handoff.entries` so the browser can preserve managed entries without a
Contentful Delivery API (CDA) round trip. Server prefetch accepts a direct descriptor shaped as
`{ contentType, slug, slugField?, entryQuery? }`; `OptimizedEntry` receives that descriptor under
`managedEntry`. `slugField` defaults to `slug`.

Managed fetching needs the app-owned Contentful client in both bindings: the server binding uses it
for prefetch, and the browser binding uses it if a managed source must fetch after hydration. It also
extends the app-owned `getContentfulOptimization` wrapper with the descriptors for the current page.

**Adapt this to your use case:** add managed fetching only if a page passes an ID or descriptor to
`OptimizedEntry`. Keep `contentfulClient` in your existing Contentful module.

```diff
 // lib/optimization.ts
 import { bindNextjsPagesRouterOptimization } from '@contentful/optimization-nextjs/pages-router'
+import { contentfulClient } from './contentful'

 bindNextjsPagesRouterOptimization({
   clientId: process.env.NEXT_PUBLIC_OPTIMIZATION_CLIENT_ID!,
+  contentful: { client: contentfulClient },
   // your existing config
 })

 // lib/optimization-server.ts
-import { bindNextjsPagesRouterServerOptimization } from '@contentful/optimization-nextjs/pages-router/server'
+import {
+  bindNextjsPagesRouterServerOptimization,
+  type ManagedEntryDescriptor,
+} from '@contentful/optimization-nextjs/pages-router/server'
+import { contentfulClient } from './contentful'

 bindNextjsPagesRouterServerOptimization({
   clientId: process.env.NEXT_PUBLIC_OPTIMIZATION_CLIENT_ID!,
+  contentful: { client: contentfulClient },
   // your existing config
 })

-export async function getContentfulOptimization(context: GetServerSidePropsContext) {
+export async function getContentfulOptimization(
+  context: GetServerSidePropsContext,
+  prefetchManagedEntries: readonly ManagedEntryDescriptor[] = [],
+) {
   const routeKey = context.resolvedUrl || context.req.url || '/'

   return {
     handoff: await createRequestHandoff(context, {
       cache: { scope: 'private-request' },
       hydration: 'preserve-server',
       pagePayload: { properties: { path: routeKey } },
+      prefetchManagedEntries,
     }),
   }
 }
```

For a dynamic route, define the source once from the route parameter. `contentType`, `slug`,
`slugField`, and `entryQuery` are fixed SDK property names. Their values — including the content type
ID, slug field ID, route slug, locale, and include depth — come from your app and content model.

**Adapt this to your use case:**

```ts
// lib/page-entry-source.ts
export function getPageEntrySource(slug: string) {
  return {
    contentType: 'page',
    slug,
    slugField: 'slug',
    entryQuery: { locale: 'en-US', include: 10 },
  } as const
}

export type PageEntrySource = ReturnType<typeof getPageEntrySource>
```

Use that same object for server prefetch and browser rendering:

**Adapt this to your use case:**

```tsx
// pages/[slug].tsx
import { Hero } from '../../../../components/Hero'
import { OptimizedEntry } from '../../../../lib/optimization'
import { getContentfulOptimization } from '../../../../lib/optimization-server'
import { getPageEntrySource, type PageEntrySource } from '../../../../lib/page-entry-source'
import type { GetServerSidePropsContext } from 'next'

type PageProps = {
  entrySource: PageEntrySource
}

export async function getServerSideProps(context: GetServerSidePropsContext) {
  const routeSlug = context.params?.slug
  if (typeof routeSlug !== 'string') return { notFound: true }

  const entrySource = getPageEntrySource(routeSlug)

  return {
    props: {
      contentfulOptimization: await getContentfulOptimization(context, [entrySource]),
      entrySource,
    },
  }
}

export default function Page({ entrySource }: PageProps) {
  return (
    <OptimizedEntry managedEntry={entrySource}>{(entry) => <Hero entry={entry} />}</OptimizedEntry>
  )
}
```

Slug lookup merges the normal managed query, then enforces `content_type`,
`fields.<slugField>`, and `limit: 2`. These are the exact failure templates:

* No match: `Contentful entry not found for content type "<contentType>" where "fields.<slugField>" equals "<slug>".`
* More than one match: `Multiple Contentful entries found for content type "<contentType>" where "fields.<slugField>" equals "<slug>".`

The angle-bracketed placeholders are replaced with the source's actual content type, effective slug
field, and slug. The handoff nests the normalized descriptor under `managedEntry`, retains the
fetched entry's real `sys.id` as `entryId`, and lets the browser render reuse it when `contentType`,
`slug`, the effective `slugField`, and effective `entryQuery` values match. Changing the locale,
include depth, custom slug field, or another query value creates a different source and therefore
does not reuse this handoff entry. Resolution metadata and interaction tracking use the real ID, not
the slug.

### The getServerSideProps request handoff and the profile cookie

**Integration category:** Required for first integration

`createRequestHandoff(context, options)` reads the Pages Router request, evaluates
`consent.server`, calls the request page event, persists the SDK-owned anonymous profile cookie on
the response when appropriate, and returns a serializable browser `handoff`.
Configure `consent.server` explicitly. If it is omitted, Pages Router request consent resolves to
`false`.

The returned handoff also carries browser defaults derived from the resolved server consent. When
`_app.tsx` passes that handoff to the bound root, those handoff defaults override matching
`consent.clientDefaults` axes for the first browser runtime; `clientDefaults` remains the fallback
for routes without a request handoff.

The SDK-owned anonymous profile cookie is `ctfl-opt-aid`. Your app owns any consent cookie or account
record that `consent.server` reads. Pages Router server work happens in `getServerSideProps`; there
is no middleware or proxy requirement for the Pages Router path.

### The bound root and page events

**Integration category:** Required for first integration

The bound `OptimizationProvider` handles the content SDK context, handoff, hydration mode, and
managed-entry prefetch for a subtree. Use the bound `OptimizationRoot` in `_app.tsx` because it adds
initial page-event wiring. Pass `routeKey` and `buildPagePayload` so the root can follow the
handoff's `initialPageEvent` instruction; those props do not belong on `OptimizationProvider`. The
separate `NextPagesAutoPageTracker` should emit the initial event when no handoff exists and skip it
when a handoff lets the root own that first route, then track later client navigations.

### Personalizing entries

**Integration category:** Required for first integration

`OptimizedEntry` receives a `baselineEntry` fetched by your page, a managed `entryId` plus optional
`entryQuery`, or a content-type/slug descriptor under `managedEntry`. The descriptor can also set
`slugField` and `entryQuery`. Its render prop receives the resolved entry. If no
experience applies, consent is denied, the API has no variant, or a linked variant cannot be
resolved, the render receives the baseline entry.

`isEmptyVariant === true` marks the SDK renderer's no-content state. It differs from the fallback
cases above, which render the baseline entry. In the no-content state, `OptimizedEntry` keeps its
host and tracking attributes but does not invoke or render app content. The standalone
`ServerOptimizedEntry`, imported from `@contentful/optimization-nextjs/server`, is the lower-level
renderer for server code that already has a full resolver result and static children; it keeps its
server-rendered host and tracking attributes while omitting those children. An absent empty-variant
flag renders normally.

A resolved selected variant can use any Contentful content type.

A Contentful **entry skeleton** is a TypeScript type that names a content type ID and its fields.
Use one skeleton union, `S`, containing every possible baseline or variant content type. The bound
`OptimizedEntry` with `baselineEntry` uses `<S, M, L>`, where `M` is the `contentful.js` response
mode and `L` is the locale type. A managed ID or slug source uses `<S, L>` because `M` is fixed to
`undefined`. When every variant shares the baseline content type, omit the generic and let
TypeScript infer that skeleton from `baselineEntry`.

**Follow this pattern:** declare the complete skeleton union in the page renderer and narrow in the
render prop, where the resolved entry becomes page markup. The guard compares the Contentful
content type ID; it does not validate fields.

```tsx
import { OptimizedEntry } from '../../../../lib/optimization'
import { isEntryOfContentType } from '@contentful/optimization-nextjs/api-schemas'
import type { Entry, EntryFieldTypes, EntrySkeletonType } from 'contentful'

type PageSkeleton = EntrySkeletonType<{ title: EntryFieldTypes.Symbol }, 'page'>
type HeroSkeleton = EntrySkeletonType<{ headline: EntryFieldTypes.Symbol }, 'hero'>
type CtaSkeleton = EntrySkeletonType<{ label: EntryFieldTypes.Symbol }, 'cta'>
type AppEntrySkeleton = PageSkeleton | HeroSkeleton | CtaSkeleton
type AppLocale = 'en-US'

export function PersonalizedPage({ page }: { page: Entry<PageSkeleton, undefined, AppLocale> }) {
  return (
    <OptimizedEntry<AppEntrySkeleton, undefined, AppLocale> baselineEntry={page}>
      {(entry) => {
        if (isEntryOfContentType<HeroSkeleton, undefined, AppLocale>(entry, 'hero')) {
          return <h1>{entry.fields.headline}</h1>
        }
        if (isEntryOfContentType<CtaSkeleton, undefined, AppLocale>(entry, 'cta')) {
          return <button type="button">{entry.fields.label}</button>
        }
        return <h1>{entry.fields.title}</h1>
      }}
    </OptimizedEntry>
  )
}
```

The union is a compile-time model, not a runtime filter. Narrow at the renderer boundary before
reading content-type-specific fields. For lower-level resolver, managed-fetch, open-ended model,
and event-stream examples, see
[TypeScript content-model choices](/personalization/optimization-sdk/entry-personalization-and-variant-resolution#typescript-content-model-choices).

Avoid nesting two `OptimizedEntry` wrappers for the same baseline entry. Put the wrapper at the point
where the app turns the entry into output.

### Browser takeover and live updates

**Integration category:** Common but policy-dependent

The handoff controls the first browser render over server HTML. `liveUpdates` controls whether
entries may re-resolve after startup when consent, identity, profile, or preview state changes.

Keep the default locked behavior for stable first paint. Turn on `liveUpdates` in the binding config
or on a specific entry only when visible content should react after hydration.

### Entry interaction tracking

**Integration category:** Common but policy-dependent

`OptimizedEntry` emits view, click, and hover tracking from the resolved entry by default. Configure
global defaults with `trackEntryInteraction` in the browser-facing binding config and use per-entry props
for local opt-outs. Interaction delivery still depends on event consent and profile continuity.

### Consent, identity, profile, and reset

**Integration category:** Common but policy-dependent

Replace the quick-start consent shortcut with your app policy:

1. Read the app-owned consent record in the server helper's `consent.server`; omitted request
   consent resolves to `false`.
2. Seed conservative browser defaults through `consent.clientDefaults` for routes without a request
   handoff.
3. Mirror browser choices to the app-owned consent record before the next request.
4. Use `setConsent`, `identifyUser`, and `resetUser` from `/client` hooks for browser actions.

For request-handoff routes, defaults derived from the resolved `consent.server` decision travel in
the handoff and take precedence over matching `consent.clientDefaults` axes. Keep the two policies
aligned so hydration starts from the same consent decision the server used.

**Adapt this to your use case:**

```ts
bindNextjsPagesRouterServerOptimization({
  clientId: process.env.NEXT_PUBLIC_OPTIMIZATION_CLIENT_ID!,
  environment: process.env.CONTENTFUL_ENVIRONMENT ?? 'main',
  consent: {
    server: ({ cookies }) =>
      cookies.get('app-consent')?.value === 'accepted'
        ? { events: true, persistence: true }
        : false,
  },
})
```

`app-consent` is reader-owned in this example. The SDK reads only the decision you pass to it.

## Optional integrations

### Analytics forwarding

**Integration category:** Optional

Forward accepted events from `states.eventStream` after `onStatesReady` runs. Deduplicate by
`messageId`, keep vendor consent separate from Contentful event consent, and use
`states.blockedEventStream` for diagnostics instead of replay.

The runtime event stream remains model-agnostic because it can carry interactions for entries of
every content type. If you read `event.optimization?.resolvedEntry`, narrow that entry with
`isEntryOfContentType` at the point of use; resolver-specific `S` types do not flow into a
later event.

For the full pattern, use
[Forwarding Optimization SDK context to analytics and tag-management tools](/personalization/optimization-sdk/forwarding-optimization-sdk-context-to-analytics-and-tag-management-tools).

### Merge tags and Custom Flags

**Integration category:** Optional

The `OptimizedEntry` render prop also receives `getMergeTagValue`. Pass it to your Rich Text
renderer when entries contain SDK-owned merge-tag entries. Use `/client` hooks for browser-only
Custom Flags when a page needs reactive flag reads after hydration.

**Follow this pattern:**

```tsx
<OptimizedEntry baselineEntry={article}>
  {(entry, { getMergeTagValue }) => (
    <RichText document={entry.fields.body} getMergeTagValue={getMergeTagValue} />
  )}
</OptimizedEntry>
```

### Preview panel

**Integration category:** Optional

Attach `@contentful/optimization-web-preview-panel` only in development, preview, or staging
environments. The panel needs the live browser SDK and a Contentful client or pre-fetched audience
and experience entries. Keep the environment gate app-owned; do not ship editor tooling to ordinary
production visitors.

## Advanced integrations

### Mixed route strategies

**Integration category:** Advanced or production-only

Choose route ownership deliberately:

| Route strategy                       | First paint owner               | Browser content behavior                                    | Cache scope                             |
| ------------------------------------ | ------------------------------- | ----------------------------------------------------------- | --------------------------------------- |
| `getServerSideProps` request handoff | Server request                  | Preserves server output; optional live updates              | `private-request`                       |
| Static or ISR public permutation     | Static props chosen by app code | Preserves selected output; optional live updates            | `public-permutation` with SDK-built key |
| Browser-only route                   | Browser SDK                     | Resolves after hydration                                    | Static page shell                       |
| Analytics-only markup                | Server or static markup         | Tracks page and interactions only; no content re-resolution | Matches the rendered markup owner       |

Pages Router static generation does not have request context. Use
`createPublicPermutationHandoff()` only when your application supplies app-owned selected
optimizations for a static or ISR permutation. The helper serializes those selections and cache
metadata; it does not discover public permutations or derive selected optimizations from route,
cookie, header, locale, or cache-key inputs. The maintained reference route uses a finite
`getStaticPaths()` registry with `fallback: false`; `fallback: 'blocking'` is a later option for
larger registries after you define how uncached public permutations are approved.

Each `resolveEntriesForSelections()` item includes optional `isEmptyVariant`. When it is `true`, the
item retains the baseline `entry` for tracking context, but direct page output must omit consumer
content.

**Follow this pattern:** return `null` for the empty result and branch on that value in the page.
`Hero` is your app-owned renderer; the page never passes `null` to `OptimizedEntry` as a
`baselineEntry`.

```tsx
import type { InferGetStaticPropsType } from 'next'

type SegmentPageProps = InferGetStaticPropsType<typeof getStaticProps>

export default function SegmentPage({ hero }: SegmentPageProps) {
  if (hero === null) return null
  return <Hero entry={hero} />
}

export async function getStaticPaths() {
  const segments = await getPublicSegments()

  return {
    fallback: false,
    paths: segments.map((segment) => ({ params: { segment: segment.slug } })),
  }
}

export async function getStaticProps({ params }) {
  const segment = await getPublicSegment(params.segment)
  const hero = await getHeroEntry({ locale: segment.locale, include: 10 })
  const [resolvedHero] = resolveEntriesForSelections({
    entries: [hero],
    selectedOptimizations: segment.selectedOptimizations,
  })

  return {
    props: {
      contentfulOptimization: {
        handoff: createPublicPermutationHandoff({
          permutationKey: segment.slug,
          cacheVersion: segment.cacheVersion,
          locale: segment.locale,
          entryIds: segment.baselineEntryIds,
          selectedOptimizations: segment.selectedOptimizations,
          changes: segment.changes,
          hydration: 'preserve-server',
          initialPageEvent: 'emit',
        }),
      },
      hero: resolvedHero.isEmptyVariant ? null : resolvedHero.entry,
    },
    revalidate: 60,
  }
}
```

The page treats a `null` `hero` prop as no consumer output. The handoff still carries the selected
optimization state needed by the browser runtime.

For complete static, ISR, edge rendering, and analytics-only recipes, use
[Rendering personalized Next.js routes with static, ISR, and edge handoffs](/personalization/optimization-sdk/render-personalized-nextjs-routes/).
For the mechanics behind handoff state and cache scopes, use
[Optimization handoff and cache-safe rendering](/personalization/optimization-sdk/optimization-handoff-and-cache-safe-rendering/).

### Manual server and client escape hatches

**Integration category:** Advanced or production-only

Use lower-level subpaths only when the bound Pages Router path cannot express the route. The main
escape hatches are `/server` for direct Node request control with
`configureNextjsServerOptimization(...)`, `/client` for router-neutral React roots and hooks, and
`/tracking-attributes` for manually rendered analytics-only markup.
`configureNextjsServerOptimization(...)` configures a stateless server runtime; it is not a
request-isolation context. Manual flows still pass `handoff` to a React root.

Lower-level resolver calls keep selections as the optional second positional argument:
`resolveOptimizedEntry(entry, selectedOptimizations)`. Managed fetch calls accept an ID or a
source object shaped as `{ contentType, slug, slugField?, entryQuery? }`. The ID overload receives
its query in `FetchOptimizedEntryOptions`; the slug source object carries `entryQuery` itself.
`ServerOptimizedEntry<TElement, S, M, L>` places the element type first, followed by the complete
skeleton union, response mode, and locale.

When lower-level code renders a resolver result directly, `isEmptyVariant === true` marks the SDK
renderer's no-content state; check it before rendering `entry`. The result retains the baseline
entry and selection context for tracking even when consumer output is empty.

### Caching and request policy

**Integration category:** Advanced or production-only

`private-request` handoffs include request-specific state and must not be stored in a shared public
cache. Catch Experience API failures according to your app's policy; many apps return baseline props
when personalization is unavailable.

Use the handoff concept to review why request profile state must stay out of public caches, and use
the supplemental rendering guide for static and ISR public permutation handoff patterns.

**Follow this pattern:**

```ts
export async function getServerSideProps(context) {
  const hero = await getHeroEntry()

  try {
    return {
      props: {
        contentfulOptimization: await getContentfulOptimization(context),
        hero,
      },
    }
  } catch {
    return { props: { hero } }
  }
}
```

### Strict consent and duplicate-event controls

**Integration category:** Advanced or production-only

When no Optimization event may emit before explicit consent, configure a strict event policy and
return `false` from `consent.server` until your app-owned consent record is accepted. Use
`initialPageEvent="skip"` only when a handoff lets the root own the same route's first page event.
Use blocked-event diagnostics to verify denied events are dropped at the SDK boundary.

## Production checks

* Confirm server and browser config use the intended Contentful space, environment, locale, and
  Optimization client ID.
* Confirm `consent.server`, request handoff defaults, browser consent defaults, and app-owned
  consent storage agree.
* Confirm `ctfl-opt-aid` is browser-readable where server and browser profile continuity is needed.
* Confirm server page events are not duplicated by browser route trackers.
* Confirm baseline fallback is acceptable when no variant applies or Contentful links are
  unresolved.
* Confirm request-personalized output is never stored in a public shared cache.
* Run the maintained reference implementation or your app's equivalent typecheck, lint, build, and
  browser E2E checks.

## Troubleshooting

| Symptom                                                         | Likely cause                                                                                                    | Check                                                                                                                                           |
| --------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Entries stay on baseline                                        | Missing handoff props, no matching variant, denied consent, unresolved variant links, or all-locale CDA payload | Target all visitors for the first test, pass `contentfulOptimization.handoff` into `_app.tsx`, and fetch one locale with enough `include` depth |
| A heterogeneous render cannot read content-type-specific fields | The skeleton union omits a possible content type, or the entry was not narrowed before rendering                | Include every baseline and variant skeleton in `S`, then narrow with `isEntryOfContentType`                                                     |
| Page returns 500 instead of baseline                            | The request handoff call threw and the page did not catch it                                                    | Wrap the personalization helper according to your fallback policy                                                                               |
| Duplicate first page events                                     | Both the handoff root and route tracker emitted the initial route                                               | Use the handoff's `initialPageEvent` for the root and set the separate tracker to skip the initial event when the server accepted it            |
| Live entries do not change after identify or reset              | The entry is locked to the handoff and live updates are off                                                     | Enable live updates for the route or entry, or open the preview panel in an allowed environment                                                 |
| Personalized HTML is cached for the wrong visitor               | Request handoff output entered a public cache                                                                   | Keep request handoff pages private and use public permutation handoff only for explicit static or ISR permutations                              |

## Reference implementations to compare against

* [Next.js SDK Pages Router reference implementation](https://github.com/contentful/optimization/tree/main/implementations/nextjs-sdk_pages-router/README.md):
  Working Pages Router application using `getServerSideProps` state handoff, app-local bound
  components, client takeover, live updates, consent controls, page events, entry interaction
  tracking, preview attachment, and Playwright E2E coverage.
* [Next.js SDK App Router reference implementation](https://github.com/contentful/optimization/tree/main/implementations/nextjs-sdk_app-router/README.md):
  App Router equivalent using bound Server and Client Component exports.