tenara-ui-components 0.1.5 → 0.1.6

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 +3 -33
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,7 +20,7 @@ export default function RootLayout({ children }) {
20
20
  return (
21
21
  <html>
22
22
  <body>
23
- <ThemeProvider initialTheme={advisorsPlusTheme} initialThemeName="advisors-plus">
23
+ <ThemeProvider initialTheme={advisorsPlusTheme} initialThemeName="theme-name-here">
24
24
  {children}
25
25
  </ThemeProvider>
26
26
  </body>
@@ -64,27 +64,6 @@ import { ThemeProvider, defaultTheme } from 'tenara-ui-components';
64
64
  - **Colors:** Cobalt Blue & Gold
65
65
  - **Style:** Professional, modern
66
66
 
67
- ### Advisors Plus Theme
68
- ```tsx
69
- import { ThemeProvider, advisorsPlusTheme } from 'tenara-ui-components';
70
-
71
- <ThemeProvider initialTheme={advisorsPlusTheme} initialThemeName="advisors-plus">
72
- <App />
73
- </ThemeProvider>
74
- ```
75
- - **Colors:** Midnight Blue & Violet
76
- - **Style:** Financial, trustworthy
77
-
78
- ### Primax Theme
79
- ```tsx
80
- import { ThemeProvider, primaxTheme } from 'tenara-ui-components';
81
-
82
- <ThemeProvider initialTheme={primaxTheme} initialThemeName="primax">
83
- <App />
84
- </ThemeProvider>
85
- ```
86
- - **Colors:** Blue & Orange
87
- - **Style:** Energetic, modern
88
67
 
89
68
  ## Components
90
69
 
@@ -102,18 +81,9 @@ import { ThemeProvider, primaxTheme } from 'tenara-ui-components';
102
81
  ### Pages
103
82
  - **Page** - Complete page layout template
104
83
 
105
- ## Multi-Tenant Architecture
106
-
107
- Perfect for separate tenant websites:
108
-
109
- ```
110
- Component Library (npm)
111
- ├── advisors-plus.com → advisorsPlusTheme
112
- ├── primax.com → primaxTheme
113
- └── velera.com → defaultTheme
114
- ```
84
+ ## Architecture
115
85
 
116
- Each tenant site gets:
86
+ Each site gets:
117
87
  - ✅ Automatic brand colors
118
88
  - ✅ Consistent component styling
119
89
  - ✅ Zero configuration beyond theme selection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenara-ui-components",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "dist/index.js",