uniweb 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/README.md +9 -26
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -411,29 +411,21 @@ Use this when you need multiple sites sharing foundations, multiple foundations
411
411
 
412
412
  ## Official Templates
413
413
 
414
- Feature-rich templates with real components and sample content.
414
+ Feature-rich templates with real components and sample content. **[View all demos](https://uniweb.github.io/templates/)**
415
415
 
416
416
  ### Marketing
417
417
 
418
- ```bash
419
- pnpm create uniweb my-site --template marketing
420
- ```
418
+ [**Live Demo**](https://uniweb.github.io/templates/marketing/) · `pnpm create uniweb my-site --template marketing`
421
419
 
422
420
  **Includes:** Hero, Features, Pricing, Testimonials, CTA, FAQ, Stats, LogoCloud, Video, Gallery, Team
423
421
 
424
422
  Perfect for product launches, SaaS websites, and business landing pages.
425
423
 
426
- **Tailwind v3 variant:**
427
-
428
- ```bash
429
- pnpm create uniweb my-site --template marketing --variant tailwind3
430
- ```
424
+ **Tailwind v3 variant:** `--variant tailwind3`
431
425
 
432
426
  ### Academic
433
427
 
434
- ```bash
435
- pnpm create uniweb my-site --template academic
436
- ```
428
+ [**Live Demo**](https://uniweb.github.io/templates/academic/) · `pnpm create uniweb my-site --template academic`
437
429
 
438
430
  **Includes:** ProfileHero, PublicationList, ResearchAreas, TeamGrid, Timeline, ContactCard, Navbar, Footer
439
431
 
@@ -441,9 +433,7 @@ Perfect for researcher portfolios, lab websites, and academic department sites.
441
433
 
442
434
  ### Docs
443
435
 
444
- ```bash
445
- pnpm create uniweb my-site --template docs
446
- ```
436
+ [**Live Demo**](https://uniweb.github.io/templates/docs/) · `pnpm create uniweb my-site --template docs`
447
437
 
448
438
  **Includes:** Header, LeftPanel, DocSection, CodeBlock, Footer
449
439
 
@@ -451,9 +441,7 @@ Perfect for technical documentation, guides, and API references.
451
441
 
452
442
  ### International
453
443
 
454
- ```bash
455
- pnpm create uniweb my-site --template international
456
- ```
444
+ [**Live Demo**](https://uniweb.github.io/templates/international/) · `pnpm create uniweb my-site --template international`
457
445
 
458
446
  **Includes:** Hero, Features, Team, CTA, Header (with language switcher), Footer (with language links)
459
447
 
@@ -462,14 +450,9 @@ pnpm create uniweb my-site --template international
462
450
  A multilingual business site demonstrating Uniweb's i18n capabilities. Includes pre-configured translation files and a complete localization workflow:
463
451
 
464
452
  ```bash
465
- # Extract translatable strings
466
- uniweb i18n extract
467
-
468
- # Check translation coverage
469
- uniweb i18n status
470
-
471
- # Build generates locale-specific output (dist/es/, dist/fr/)
472
- uniweb build
453
+ uniweb i18n extract # Extract translatable strings
454
+ uniweb i18n status # Check translation coverage
455
+ uniweb build # Generates dist/es/, dist/fr/
473
456
  ```
474
457
 
475
458
  Perfect for international businesses and learning the i18n workflow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -37,9 +37,9 @@
37
37
  "js-yaml": "^4.1.0",
38
38
  "prompts": "^2.4.2",
39
39
  "tar": "^7.0.0",
40
- "@uniweb/build": "0.3.0",
40
+ "@uniweb/runtime": "0.4.1",
41
+ "@uniweb/kit": "0.3.0",
41
42
  "@uniweb/core": "0.2.3",
42
- "@uniweb/runtime": "0.4.0",
43
- "@uniweb/kit": "0.3.0"
43
+ "@uniweb/build": "0.3.0"
44
44
  }
45
45
  }