mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 07:34:11 +00:00
* feat: add registry directory * fix: lint * feat: add more registries * feat: add nuqs to directory * feat: add shadcndesign * feat: add more registries * feat: add new registries * chore: remove hooks
70 lines
2.1 KiB
Plaintext
70 lines
2.1 KiB
Plaintext
---
|
|
title: Registry Directory
|
|
description: Discover community registries for shadcn/ui components and blocks.
|
|
---
|
|
|
|
These registries are built into the CLI with no additional configuration required. To add a component, run: `npx shadcn add @<registry>/<component>`.
|
|
|
|
<DirectoryList />
|
|
|
|
Don't see a registry? Learn how to [add it here](/docs/registry/registry-index).
|
|
|
|
## Documentation
|
|
|
|
You can use the `shadcn` CLI to run your own code registry. Running your own registry allows you to distribute your custom components, hooks, pages, config, rules and other files to any project.
|
|
|
|
<div className="mt-6 grid gap-4 sm:grid-cols-2">
|
|
<LinkedCard href="/docs/registry/getting-started" className="items-start text-sm md:p-6">
|
|
<div className="font-medium">Getting Started</div>
|
|
<div className="text-muted-foreground">
|
|
Set up and build your own registry
|
|
</div>
|
|
</LinkedCard>
|
|
|
|
<LinkedCard
|
|
href="/docs/registry/authentication"
|
|
className="items-start text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Authentication</div>
|
|
<div className="text-muted-foreground">
|
|
Secure your registry with authentication
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="/docs/registry/namespace"
|
|
className="items-start text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Namespaces</div>
|
|
<div className="text-muted-foreground">
|
|
Configure registries with namespaces
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="/docs/registry/registry-index"
|
|
className="items-start text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Add a Registry</div>
|
|
<div className="text-muted-foreground">
|
|
Learn how to add a registry to the directory
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="/docs/registry/examples"
|
|
className="items-start text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Examples</div>
|
|
<div className="text-muted-foreground">
|
|
Registry item examples and configurations
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="/docs/registry/registry-json"
|
|
className="items-start text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Schema</div>
|
|
<div className="text-muted-foreground">
|
|
Schema specification for registry.json
|
|
</div>
|
|
</LinkedCard>
|
|
</div>
|