If you have a website created on Gatsby, you can add a Voxys Connect live chat widget and talk to your visitors in real time. This can be done in 3 simple steps using Voxys Connect’s Gatsby plugin.

## Step 1. Add the Gatsby plugin to your project​

Add `gatsby-plugin-chatwoot` to your Gatsby project.

```
npm install --save gatsby-plugin-chatwoot
```

If you are using yarn, use the following:

```
yarn add gatsby-plugin-chatwoot
```

## Step 2. Add the plugin to your Gatsby config file​

```
// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-plugin-chatwoot`,
    options: {
      baseUrl: "BASE_URL", // Required
      websiteToken: "WEBSITE_TOKEN", // Required
      includeInDevelopment: false, // Optional
      chatwootSettings: {}, // Optional
    },
  },
];
```

You can get your Website token and base URL from your Inbox settings in your Voxys Connect account.

If you need to create a new website channel, follow the procedure illustrated [here](https://docs.voxys.ai/hc/voxys-help/en/website-live-chat).

## Step 3. Start your server​

You would be able to see the Voxys Connect widget on the page now.