# Instant Meet CTA

A configurable, accessible instant meet cta surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/instant-meet-cta.json
```

[Registry JSON](https://amro-ui.vercel.app/r/instant-meet-cta.json)

## Preview

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


## Source

### ui/instant-meet-cta.tsx

```tsx
"use client";

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

export { InstantMeetCTA } from "@/components/amro/components/meeting";
export type { InstantMeetCTAProps } from "@/components/amro/components/meeting";
```



## Usage

A configurable, accessible instant meet cta surface for AI product workflows.

### Package

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

<InstantMeetCTA />
```

### shadcn copy

```tsx
import { InstantMeetCTA } from "@/components/ui/instant-meet-cta";

<InstantMeetCTA />
```

