# Tutor Conversation Panel

A configurable, accessible tutor conversation panel surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/tutor-conversation-panel.json
```

[Registry JSON](https://amro-ui.vercel.app/r/tutor-conversation-panel.json)

## Preview

```tsx
import { TutorConversationPanel } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <TutorConversationPanel />
    </div>
  );
}
```


## Source

### ui/tutor-conversation-panel.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { TutorConversationPanel } from "@/components/amro/components/learning";
export type { TutorConversationPanelProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible tutor conversation panel surface for AI product workflows.

### Package

```tsx
import { TutorConversationPanel } from "@amro-ui/react";

<TutorConversationPanel />
```

### shadcn copy

```tsx
import { TutorConversationPanel } from "@/components/ui/tutor-conversation-panel";

<TutorConversationPanel />
```

