@agenticindiedev/ui 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A modern React component library built with TypeScript, Tailwind CSS v4, Radix UI, and shadcn/ui patterns.
4
4
 
5
+ 📖 **[View Storybook Documentation](https://agenticindiedev.github.io/ui/)**
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -28,18 +30,6 @@ bun dev
28
30
 
29
31
  This launches Storybook at `http://localhost:6006` where you can preview and develop components.
30
32
 
31
- ### 3. Component Gallery
32
-
33
- View the component gallery (demo page) locally:
34
-
35
- ```bash
36
- cd demo
37
- bun install
38
- bun run dev
39
- ```
40
-
41
- This launches the demo gallery at `http://localhost:3000` showcasing all components using the built library.
42
-
43
33
  ## Scripts
44
34
 
45
35
  | Command | Description |
@@ -294,7 +284,7 @@ This project uses [Storybook](https://storybook.js.org/) for component developme
294
284
  ### Viewing Storybook
295
285
 
296
286
  - **Local Development**: Run `bun dev` to start Storybook at `http://localhost:6006`
297
- - **Online**: View the deployed Storybook on [GitHub Pages](https://agenticindiedev.github.io/ui/) (automatically deployed on push to main)
287
+ - **Online**: View the deployed Storybook at [https://agenticindiedev.github.io/ui/](https://agenticindiedev.github.io/ui/) (automatically deployed on push to main)
298
288
 
299
289
  ### Storybook Features
300
290
 
@@ -304,27 +294,13 @@ This project uses [Storybook](https://storybook.js.org/) for component developme
304
294
  - Auto-generated documentation
305
295
  - Dark mode support
306
296
 
307
- ## Demo Gallery
308
-
309
- A standalone demo gallery is available in the `demo/` directory. This showcases all components using the published library in a simple, clean interface.
310
-
311
- ### Running the Demo
312
-
313
- ```bash
314
- cd demo
315
- bun install
316
- bun run dev
317
- ```
318
-
319
- The demo gallery will be available at `http://localhost:3000`.
320
-
321
297
  ## GitHub Pages Deployment
322
298
 
323
299
  Storybook is automatically deployed to GitHub Pages on every push to the `main` branch via GitHub Actions. The workflow:
324
300
 
325
301
  1. Builds Storybook using `bun run build-storybook`
326
302
  2. Deploys the static build to the `gh-pages` branch
327
- 3. Makes it available at `https://agenticindiedev.github.io/ui/`
303
+ 3. Makes it available at [https://agenticindiedev.github.io/ui/](https://agenticindiedev.github.io/ui/)
328
304
 
329
305
  ## License
330
306