Components
Next.js
Next.js
Install and configure Next.js.
A template is available to help you get started quickly.
Create project
Start by creating a new Next.js project using create-next-app
:
npx create-next-app@latest my-app --typescript --tailwind --eslint
Run the CLI
npx plate-ui@latest init
Configure components.json
You will be asked a few questions to configure components.json
:
Which style would you like to use? › Default
Which color would you like to use as base color? › Slate
Where is your global CSS file? › src/style/globals.css
Do you want to use CSS variables for colors? › no / yes
Where is your tailwind.config.js located? › tailwind.config.js
Configure the import alias for components: › @/components
Configure the import alias for utils: › @/lib/utils
Are you using React Server Components? › no / yes
App structure
Here's how we structure our Next.js apps. You can use this as a reference:
.
├── src
│ ├── app
│ │ ├── layout.tsx
│ │ └── page.tsx
│ │ components
│ │ ├── ui
│ │ │ ├── button.tsx
│ │ │ ├── dropdown-menu.tsx
│ │ │ ├── paragraph-element.tsx
│ │ │ └── ...
│ │ ├── main-nav.tsx
│ │ ├── page-header.tsx
│ │ └── ...
│ │ lib
│ │ └── utils.ts
│ │ styles
│ │ └── globals.css
├── next.config.js
├── package.json
├── postcss.config.js
├── tailwind.config.js
└── tsconfig.json
- We place the UI components in the
components/ui
folder. If you already have one and want to keep them separated, you could usecomponents/plate-ui
. - The rest of the components such as
<PageHeader />
and<MainNav />
are placed in thecomponents
folder. - The
lib
folder contains all the utility functions. We have autils.ts
where we define thecn
helper. - The
styles
folder contains the global CSS.
Add components
You can now start adding components to your project.
npx plate-ui@latest add button
The command above will add the Button
component to your project. You can then import it like this:
import { Button } from '@/components/plate-ui';
export default function Home() {
return (
<div>
<Button>Click me</Button>
</div>
);
}
Register components
To add the components to your plugins, see Plugin Components.