> ## Documentation Index
> Fetch the complete documentation index at: https://docs.proofable.me/llms.txt
> Use this file to discover all available pages before exploring further.

# NFT gating

> Require NFT ownership before content or rewards.

Use the [NFT ownership](../verification/nft-ownership) check. Ownership is point-in-time. Set the contract, token policy, and recency in your published gate.

## Widget

```jsx theme={"dark"}
import { VerifyGate } from '@proofable/sdk/widgets';

export function NFTGatedContent() {
  return (
    <VerifyGate gateId="gate_your-nft-gate">
      <ProtectedContent />
    </VerifyGate>
  );
}
```

## Next

* [Sell access](../quickstart)
* [NFT ownership check](../verification/nft-ownership)
