Update Readme.md

This commit is contained in:
Natxo
2026-03-31 13:01:02 +02:00
committed by GitHub
parent 87aefa3d48
commit 7600cb2b77

View File

@@ -29,11 +29,13 @@ To use SigPro UI, your project must include:
SigPro UI is built as an extension of the SigPro reactivity system. You need to install the core library first. SigPro UI is built as an extension of the SigPro reactivity system. You need to install the core library first.
### Step 1: Install SigPro Core ### Step 1: Install SigPro Core
´´´Bash
```Bash
bun add sigpro bun add sigpro
# or # or
npm install sigpro npm install sigpro
``` ```
### Step 2: Install SigPro UI ### Step 2: Install SigPro UI
```Bash ```Bash
@@ -43,6 +45,7 @@ npm install sigpro-ui
``` ```
### Via CDN (Browser) ### Via CDN (Browser)
```html ```html
<script src="https://unpkg.com/sigpro"></script> <script src="https://unpkg.com/sigpro"></script>
<script src="https://unpkg.com/sigpro-ui"></script> <script src="https://unpkg.com/sigpro-ui"></script>
@@ -54,7 +57,7 @@ SigPro UI components rely on **Tailwind CSS** and **daisyUI** for styling. You d
Create or edit your global CSS file (e.g., style.css): Create or edit your global CSS file (e.g., style.css):
´´´CSS ```css
/* src/style.css */ /* src/style.css */
@import "tailwindcss"; @import "tailwindcss";
@plugin "daisyui"; @plugin "daisyui";