markora-ui 0.1.0 → 0.1.3

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
@@ -54,7 +54,7 @@ npx tailwindcss init -p
54
54
 
55
55
  ### Step 2: Update `tailwind.config.ts`
56
56
 
57
- Include Aether UI in your Tailwind config:
57
+ Include MarkoraUI in your Tailwind config:
58
58
 
59
59
  ```typescript
60
60
  import type { Config } from 'tailwindcss';
@@ -77,13 +77,13 @@ export default {
77
77
  In your app's entry point:
78
78
 
79
79
  ```typescript
80
- import 'aether-ui/styles.css';
80
+ import 'markora-ui/styles.css';
81
81
  ```
82
82
 
83
83
  ### Step 4: Start Using Components
84
84
 
85
85
  ```typescript
86
- import { Button, Card, CardContent, CardHeader, CardTitle } from 'aether-ui';
86
+ import { Button, Card, CardContent, CardHeader, CardTitle } from 'markora-ui';
87
87
 
88
88
  export default function App() {
89
89
  return (
@@ -267,7 +267,7 @@ export default function RootLayout({ children }) {
267
267
  // app/page.tsx
268
268
  'use client';
269
269
 
270
- import { Button, Card, CardContent, CardHeader, CardTitle } from 'aether-ui';
270
+ import { Button, Card, CardContent, CardHeader, CardTitle } from 'markora-ui';
271
271
 
272
272
  export default function Page() {
273
273
  return (