We just registered to npmjs.com! @fydemy/ui
@fydemy/ui

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 init

Add component

Start adding component to your designated component path.

npx @fydemy/ui@latest add button

Import

Import the component that you have added to your project.

import { Button } from "@/components/ui/button";

export default function Home() {
  return <Button>Create !</Button>;
}