Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ Install individual components with the [shadcn](https://ui.shadcn.com) CLI — n
pnpm dlx shadcn@latest add https://ui.vllnt.com/r/button.json
```

Or by `@vllnt` namespace once it's in the [shadcn registry index](https://ui.shadcn.com/r/registries.json) (add `"@vllnt": "https://ui.vllnt.com/r/{name}.json"` to your `components.json` `registries`):
Or by `@vllnt-ui` namespace once it's in the [shadcn registry index](https://ui.shadcn.com/r/registries.json) (add `"@vllnt-ui": "https://ui.vllnt.com/r/{name}.json"` to your `components.json` `registries`):

```bash
pnpm dlx shadcn@latest add @vllnt/button
pnpm dlx shadcn@latest add @vllnt-ui/button
```

## Quick Start
Expand Down
6 changes: 3 additions & 3 deletions apps/registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ This builds the Next.js app and generates registry JSON files to `public/r/` usi
pnpm dlx shadcn@latest add https://ui.vllnt.com/r/button.json
```

Namespaced install (once `@vllnt` is listed in the [shadcn registry index](https://ui.shadcn.com/r/registries.json)) — add the registry to your app's `components.json`:
Namespaced install (once `@vllnt-ui` is listed in the [shadcn registry index](https://ui.shadcn.com/r/registries.json)) — add the registry to your app's `components.json`:

```json
{
"registries": {
"@vllnt": "https://ui.vllnt.com/r/{name}.json"
"@vllnt-ui": "https://ui.vllnt.com/r/{name}.json"
}
}
```

Then install by namespace:

```bash
pnpm dlx shadcn@latest add @vllnt/button
pnpm dlx shadcn@latest add @vllnt-ui/button
```

## Adding Components
Expand Down
2 changes: 1 addition & 1 deletion apps/registry/registry.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "@vllnt",
"name": "@vllnt-ui",
"homepage": "https://ui.vllnt.com",
"items": [
{
Expand Down
2 changes: 1 addition & 1 deletion apps/registry/shadcn-directory-entry.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@vllnt",
"name": "@vllnt-ui",
"homepage": "https://ui.vllnt.com",
"url": "https://ui.vllnt.com/r/{name}.json",
"description": "VLLNT UI — agent-first React components for AI-native products, from UI primitives to finance and ops domains. Accessible, Radix + Tailwind, you own the code.",
Expand Down
Loading