Installation

Review the basic installation steps to integrate these components into your project.

The installation steps for these components are the same as shadcn/ui.

About the Installation

There is no need to install anything with npm. Follow the steps in the link above, select the components you need, copy the code into your project, and customize as desired.

This guide serves as a reference for building and integrating individual components, just as with shadcn/ui.

For detailed instructions, please refer to the shadcn/ui installation page.

Additionally, remember to add the following code to `globals.css` to hide the scrollbar.

/* globals.css */

::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}