Installation
How to add to your project?
Create project
Run the init command inside your root project to configure the component path, theme, and package manager to install the required dependencies.
npx @fydemy/ui@latest initAdd component
Start adding component to your designated component path.
npx @fydemy/ui@latest add buttonImport
Import the component that you have added to your project.
import { Button } from "@/components/ui/button";
export default function Home() {
return <Button>Create !</Button>;
}