hive-react-kit 0.3.4 → 0.3.5

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 +34 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -116,6 +116,40 @@ import { HiveToolbar } from 'hive-react-kit';
116
116
 
117
117
  > **Note:** Vote Witness Sagar, Vote Witness 3Speak, and 3Speak are always visible and cannot be hidden.
118
118
 
119
+ ### Landing Component
120
+
121
+ - **HiveContributionsLanding** – Configurable landing page for Hive contributions: vision/mission, beliefs, delivered/in-dev/planned apps, contributions grid, and contact footer. Reusable across apps with customizable colors and dividers.
122
+
123
+ #### HiveContributionsLanding Usage
124
+
125
+ ```tsx
126
+ import { HiveContributionsLanding } from 'hive-react-kit';
127
+
128
+ // Default dark theme
129
+ <HiveContributionsLanding />
130
+
131
+ // Custom theme
132
+ <HiveContributionsLanding
133
+ backgroundColor="#020617"
134
+ textColor="#e5e7eb"
135
+ cardBackgroundColor="rgba(15,23,42,0.9)"
136
+ isDividerShow={true}
137
+ dividerColor="rgba(148,163,184,0.4)"
138
+ />
139
+ ```
140
+
141
+ #### HiveContributionsLanding Props
142
+
143
+ | Prop | Type | Default | Description |
144
+ |------|------|---------|-------------|
145
+ | `backgroundColor` | `string` | `"#020617"` | Page background color |
146
+ | `textColor` | `string` | `"#e5e7eb"` | Main text color |
147
+ | `cardBackgroundColor` | `string` | `"rgba(15,23,42,0.85)"` | Background for all cards |
148
+ | `isDividerShow` | `boolean` | `true` | Show/hide section dividers |
149
+ | `dividerColor` | `string` | `"rgba(148,163,184,0.4)"` | Divider line color |
150
+
151
+ See [docs/HiveContributionsLanding.md](docs/HiveContributionsLanding.md) for full documentation.
152
+
119
153
  #### Toolbar Items
120
154
 
121
155
  | Item | URL |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hive-react-kit",
3
3
  "private": false,
4
- "version": "0.3.4",
4
+ "version": "0.3.5",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",