Command Palette

Search for a command to run...

Docs
Installation

Installation

How to install and set up your project with shaduxe/ui components.

Setup

Create a new project:

Initialize shadcn/ui:

Install Motion One for animations:

Add your first component:

Usage Example

import { Button } from "@/components/ui/button";
import { motion } from "motion/react";
 
export default function Page() {
  return (
    <motion.div
      initial={{ opacity: 0, y: 20 }}
      animate={{ opacity: 1, y: 0 }}
      transition={{ duration: 0.5 }}
    >
      <Button>Click me</Button>
    </motion.div>
  );
}