shadcn-nextjs-page-generator 1.0.0 → 1.0.2
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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
# shadcn-page-
|
|
1
|
+
# shadcn-nextjs-page-generator
|
|
2
2
|
|
|
3
3
|
> CLI tool to generate production-ready Next.js pages with shadcn/ui, Tailwind CSS v4, and Framer Motion animations.
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/shadcn-nextjs-page-generator)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
[](https://www.typescriptlang.org/)
|
|
8
|
+
[](https://nextjs.org/)
|
|
7
9
|
|
|
8
10
|
## Features
|
|
9
11
|
|
|
@@ -20,10 +22,10 @@
|
|
|
20
22
|
|
|
21
23
|
```bash
|
|
22
24
|
# Run with npx (no installation required)
|
|
23
|
-
npx shadcn-page-
|
|
25
|
+
npx shadcn-nextjs-page-generator
|
|
24
26
|
|
|
25
27
|
# Or install globally
|
|
26
|
-
npm install -g shadcn-page-
|
|
28
|
+
npm install -g shadcn-nextjs-page-generator
|
|
27
29
|
shadcn-page-gen
|
|
28
30
|
```
|
|
29
31
|
|
|
@@ -73,7 +75,7 @@ app/(dashboard)/your-route/
|
|
|
73
75
|
### 1. Run the CLI
|
|
74
76
|
|
|
75
77
|
```bash
|
|
76
|
-
npx shadcn-page-
|
|
78
|
+
npx shadcn-nextjs-page-generator
|
|
77
79
|
```
|
|
78
80
|
|
|
79
81
|
### 2. Answer Interactive Prompts
|
|
@@ -204,7 +206,7 @@ transition: { duration: 0.4 }
|
|
|
204
206
|
### Generate User Management Page
|
|
205
207
|
|
|
206
208
|
```bash
|
|
207
|
-
npx shadcn-page-
|
|
209
|
+
npx shadcn-nextjs-page-generator
|
|
208
210
|
```
|
|
209
211
|
|
|
210
212
|
**Configuration:**
|
|
@@ -220,7 +222,7 @@ npx shadcn-page-gen
|
|
|
220
222
|
### Generate Simple Product List
|
|
221
223
|
|
|
222
224
|
```bash
|
|
223
|
-
npx shadcn-page-
|
|
225
|
+
npx shadcn-nextjs-page-generator
|
|
224
226
|
```
|
|
225
227
|
|
|
226
228
|
**Configuration:**
|