Install and start using AI components in your Next.js project in just a few steps.
Before installing the library, make sure your project includes:
If you are installing through CLI follow shadcn documentaion
npx shadcn-ui@latest initInstall components from the registry.
npx shadcn-ui@latest add https://your-registry-url/component.jsonimport { PromptInput } from "@/components/ui/prompt-input"
export default function Page() {
return <PromptInput />
}