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

# Quickstart

> Payout sellers in peer-to-peer fiat payments with NoRamp's SDK.

<Info>
  Sign up on dash.noramp.io, create a Marketplace App and register sellers in
  order for them to receive peer-to-peer fiat payments.
</Info>

Step 1. Install NoRamp's SDK in your favorite frontend framework:

<CodeGroup>
  ```bash yarn theme={null}
  yarn add norampkit
  ```

  ```bash npm theme={null}
  npm i norampkit
  ```
</CodeGroup>

Step 2. Add the following code to your frontend:

```jsx theme={null}
import { NoRampPayout } from "norampkit";

<NoRampPayout token="TOKEN" theme={"light" | "dark"} testnet />;
```
