# Installation

Install video components from the registry.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown variants are available by appending `.md` to any URL or sending an `Accept: text/markdown` header. An agent skill is available at [/.well-known/agent-skills/site-skill.md](/.well-known/agent-skills/site-skill.md).

## Prerequisites

A project with [Editframe](https://editframe.com/) set up.

## Installation

Run the following command to add any component:

```bash
npx shadcn@latest add @framecn/cursor-flow
```

## Usage

Import and use the component:

```tsx
import { CursorFlow } from "@/components/framecn/cursor-flow";

export function DemoVideo() {
  return <CursorFlow />;
}
```