# @afex-bots/feedback

This package provides tools for collecting, processing, and analyzing user feedback. It streamlines the feedback loop by offering utilities for automated input handling, sentiment analysis, and structured data output.

---

![My Package in Action](public/image.png)

## Features

- **📩 Automated Feedback Collection**: Easily capture feedback through forms or a live chat with support
- **🔒 Secure Data Handling**: Ensures all feedback data is stored and processed safely.
- **🔁 Follow-Up Automation**: Triggers replies or actions based on feedback type.
- **📈 Lightweight & Extensible**: Designed to integrate into existing systems with minimal overhead.

## Installation

Install the library and its peer dependency using your preferred package manager:

```bash
npm install @afex-bots/feedback
#or
yarn add @afex-bots/feedback
#or
pnpm add @afex-bots/feedback
```

---

## Quick Start

### 1. Import the Required CSS

```tsx
import "@afex-bots/feedback/style.css";
```

### 2. Basic Usage Example

```tsx
import { FeedbackBot } from "@afex-bots/feedback";

export function App() {
  return (
    <>
      <FeedbackBot apiKey="" apiURL="" />
    </>
  );
}
```
