Skip to content

Installation

Install bejamas/ui in a new or existing Astro project.

bejamas/ui is a component system designed to be working with Astro framework and Tailwind v4 only.

Terminal window
bunx bejamas@latest init

Choose between Astro project or a Monorepo.

Terminal window
bunx bejamas@latest add button

The command above will add the Button component to your project.

You can then import it like this:

src/pages/index.astro
---
import Button from "@/ui/Button.astro";
---
<Button>Click me</Button>