# Instructor Programme Card

A configurable, accessible instructor programme card surface for AI product workflows.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/instructor-programme-card.json
```

[Registry JSON](https://amro-ui.vercel.app/r/instructor-programme-card.json)

## Preview

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


## Source

### ui/instructor-programme-card.tsx

```tsx
"use client";

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

export { InstructorProgrammeCard } from "@/components/amro/components/learning";
export type { InstructorProgrammeCardProps } from "@/components/amro/components/learning";
```



## Usage

A configurable, accessible instructor programme card surface for AI product workflows.

### Package

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

<InstructorProgrammeCard />
```

### shadcn copy

```tsx
import { InstructorProgrammeCard } from "@/components/ui/instructor-programme-card";

<InstructorProgrammeCard />
```

