tenara-ui-components 0.1.8 → 0.1.9

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 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,7 +10,14 @@ npm install tenara-ui-components
10
10
 
11
11
  ## Quick Start
12
12
 
13
- ### 1. Wrap Your App with ThemeProvider
13
+ ### 1. Import Styles
14
+
15
+ ```tsx
16
+ // app/globals.css or your main CSS file
17
+ import 'tenara-ui-components/dist/index.css';
18
+ ```
19
+
20
+ ### 2. Wrap Your App with ThemeProvider
14
21
 
15
22
  ```tsx
16
23
  // app/layout.tsx (Next.js 13+) or _app.tsx
@@ -29,7 +36,7 @@ export default function RootLayout({ children }) {
29
36
  }
30
37
  ```
31
38
 
32
- ### 2. Use Components
39
+ ### 3. Use Components
33
40
 
34
41
  ```tsx
35
42
  import { Button, Card, Header } from 'tenara-ui-components';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenara-ui-components",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "dist/index.js",