Go to file
Rama Priyanto d648545be5 feat: initial commit 2026-03-18 11:16:10 +07:00
app feat: initial commit 2026-03-18 11:16:10 +07:00
components feat: initial commit 2026-03-18 11:16:10 +07:00
hooks feat: initial commit 2026-03-18 11:16:10 +07:00
lib feat: initial commit 2026-03-18 11:16:10 +07:00
public feat: initial commit 2026-03-18 11:16:10 +07:00
.gitignore feat: initial commit 2026-03-18 11:16:10 +07:00
.prettierignore feat: initial commit 2026-03-18 11:16:10 +07:00
.prettierrc feat: initial commit 2026-03-18 11:16:10 +07:00
README.md feat: initial commit 2026-03-18 11:16:10 +07:00
components.json feat: initial commit 2026-03-18 11:16:10 +07:00
eslint.config.mjs feat: initial commit 2026-03-18 11:16:10 +07:00
next.config.mjs feat: initial commit 2026-03-18 11:16:10 +07:00
package-lock.json feat: initial commit 2026-03-18 11:16:10 +07:00
package.json feat: initial commit 2026-03-18 11:16:10 +07:00
postcss.config.mjs feat: initial commit 2026-03-18 11:16:10 +07:00
tsconfig.json feat: initial commit 2026-03-18 11:16:10 +07:00

README.md

Next.js template

This is a Next.js template with shadcn/ui.

Adding components

To add components to your app, run the following command:

npx shadcn@latest add button

This will place the ui components in the components directory.

Using components

To use the components in your app, import them as follows:

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