# Keyword Cluster Map

A configurable, accessible keyword cluster map surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/keyword-cluster-map.json
```

[Registry JSON](https://amro-ui.vercel.app/r/keyword-cluster-map.json)

## Preview

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


## Source

### ui/keyword-cluster-map.tsx

```tsx
"use client";

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

export { KeywordClusterMap } from "@/components/amro/components/editorial";
export type { KeywordClusterMapProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible keyword cluster map surface for AI product workflows.

### Package

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

<KeywordClusterMap />
```

### shadcn copy

```tsx
import { KeywordClusterMap } from "@/components/ui/keyword-cluster-map";

<KeywordClusterMap />
```

