Get Started
Learn how to use VLLNT UI components in your projects.
Getting Started
Welcome to VLLNT UI. This is a component registry built with shadcn/ui.
Installation
Install components using the shadcn CLI:
pnpm dlx shadcn@latest add https://ui.vllnt.com/r/[component-name].json
Usage
Import components from @vllnt/ui:
import { Button } from '@vllnt/ui'
export function MyComponent() {
return <Button>Click me</Button>
}