# Ask Amro Launcher

A configurable, accessible ask amro launcher surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/ask-amro-launcher.json
```

[Registry JSON](https://amro-ui.vercel.app/r/ask-amro-launcher.json)

## Preview

```tsx
import { AskAmroLauncher } 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">
      <AskAmroLauncher />
    </div>
  );
}
```


## Source

### ui/ask-amro-launcher.tsx

```tsx
"use client";

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

export { AskAmroLauncher } from "@/components/amro/components/conversational";
export type { AskAmroLauncherProps } from "@/components/amro/components/conversational";
```



## Usage

A configurable, accessible ask amro launcher surface for AI product workflows.

### Package

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

<AskAmroLauncher />
```

### shadcn copy

```tsx
import { AskAmroLauncher } from "@/components/ui/ask-amro-launcher";

<AskAmroLauncher />
```

