# Internal Link Suggestion

A configurable, accessible internal link suggestion surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/internal-link-suggestion.json
```

[Registry JSON](https://amro-ui.vercel.app/r/internal-link-suggestion.json)

## Preview

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


## Source

### ui/internal-link-suggestion.tsx

```tsx
"use client";

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

export { InternalLinkSuggestion } from "@/components/amro/components/editorial";
export type { InternalLinkSuggestionProps } from "@/components/amro/components/editorial";
```



## Usage

A configurable, accessible internal link suggestion surface for AI product workflows.

### Package

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

<InternalLinkSuggestion />
```

### shadcn copy

```tsx
import { InternalLinkSuggestion } from "@/components/ui/internal-link-suggestion";

<InternalLinkSuggestion />
```

