Vuzeno is one of many component registries built on top of shadcn-vue. Depending on your project, another registry may be a better fit — or a great complement to Vuzeno.
This page curates community registries worth exploring so you can pick the one that matches your needs.
Inspira UI
- Link: inspira-ui.com
- Description: Vue/Nuxt port of Aceternity UI and Magic UI — a large catalog of animated, marketing-grade components (marquees, hero effects, 3D cards, text animations, backgrounds).
Reach for Inspira UI when you need flashy, motion-heavy components for landing pages and marketing sites. It's the most popular community shadcn-vue registry.
Install a component:
bunx --bun shadcn-vue@latest add https://registry.inspira-ui.com/[component].json
UI Thing
- Link: uithing.com
- Description: Nuxt-first shadcn-style library built on Reka UI and Tailwind, shipping an extended catalog of forms, charts, data tables, blocks, and starters.
Pick UI Thing when you're building a Nuxt app and want a broader, batteries-included component library than core shadcn-vue. It ships its own CLI that mirrors the shadcn-vue registry model.
Install a component:
bunx --bun ui-thing@latest add [component]
Neobrutalism Vue
- Link: neobrutalism-vue.com
- Description: 30+ neobrutalist-styled Vue components (bold borders, hard shadows, high contrast) built on shadcn-vue and Reka UI, tuned for Tailwind v4.
Use it when you want the distinctive neobrutalist look with a drop-in shadcn-vue registry — no custom CLI required.
Install a component:
bunx --bun shadcn-vue@latest add https://neobrutalism-vue.com/r/[component].json
ElevenLabs UI Vue
- Link: elevenlabs-ui-vue.com
- Description: Vue port of ElevenLabs UI — agent and audio components (orbs, waveforms, transcripts, voice buttons, conversation UIs) for multimodal AI apps.
Reach for ElevenLabs UI Vue when you're building voice agents, audio players, or conversational AI interfaces and want polished, domain-specific components out of the box.
Install a component:
bunx --bun shadcn-vue@latest add https://registry.elevenlabs-ui-vue.com/[component].json
Using multiple registries
You can combine any of these with Vuzeno in your components.json to install components with short @namespace/ aliases:
{
"registries": {
"@vuzeno": "https://vuzeno.com/r/{name}.json",
"@inspira": "https://registry.inspira-ui.com/{name}.json",
"@neobrutalism": "https://neobrutalism-vue.com/r/{name}.json",
"@elevenlabs": "https://registry.elevenlabs-ui-vue.com/{name}.json"
}
}
Then add components from any registry with the shadcn-vue CLI:
bunx --bun shadcn-vue@latest add @inspira/[component]