> For the complete documentation index, see [llms.txt](https://docs.startupstarterkits.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.startupstarterkits.com/ssk-pro-features/index/chapter-2.md).

# Using the Pre-built Chat Component

Chapter 2:

## Step 2 - Implement the Chat Component

SSK provides a pre-built chat component with AI support. Here’s how to use it:

```tsx
import Chat from './Chat'

// Include the chat component in your page
function Example() {
  return (
    <div>
      <h1>Chat with our AI Assistant</h1>
      <Chat />
    </div>
  )
}
```
