Quick Start

Install and start using AI components in your Next.js project in just a few steps.

Requirements

Before installing the library, make sure your project includes:

If you are installing through CLI follow shadcn documentaion

CLI
Manual

Step 1: Initialize shadcn

npx shadcn-ui@latest init

Step 2: Add Brainframe components

Install components from the registry.

npx shadcn-ui@latest add https://your-registry-url/component.json

Step 3: Use the component

import { PromptInput } from "@/components/ui/prompt-input"

export default function Page() {
return <PromptInput />
}