Installation
Install uimix components in your project
Prerequisites
- Next.js or React project with Tailwind CSS
- Node.js 18 or higher
Setup
1. Configure Registry
Add uimix registry to your components.json:
{
"registries": {
"@uimix": "https://uimix.dev/r/{name}.json"
}
}If you don't have a components.json file, run npx shadcn@latest init first.
2. Install Components
npx shadcn@latest add @uimix/cta-vertical-marqueeThe CLI automatically installs dependencies and adds component files to your project.
3. Use Components
import CtaVerticalMarquee from '@/components/cta/cta-vertical-marquee'
export default function Page() {
return <CtaVerticalMarquee />
}That's it. The component is now part of your codebase and ready to customize.