inatorsui
1.0.0
Inators UI is a UI library based on Shadcn UI, designed to simplify the development of stylish and responsive user interfaces in Next.js 14 projects.
Install and configure Shadcn UI.
Start by creating a new Next.js project using create-next-app:
npx create-next-app@latest my-appRun the Shadcn UI init command to set up your project:
npx shadcn-ui@latest initInstall and configure Shadcn UI components.
Start by installing a new component by using commands from the components page dropdown-menu:
npx shadcn-ui@latest add button dropdown-menuCreate a new file using your code editor, e.g., ButtonOptions.tsx, in your components folder and copy code from components page.
Add the component to use ButtonOptions.tsx:
import ButtonOptions from "@/components/ButtonOptions";
// Your component usage code here