nextworks 0.2.0-alpha.2 → 0.2.0-alpha.20
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 +280 -228
- package/dist/cli_manifests/blocks_manifest.json +193 -194
- package/dist/commands/blocks.d.ts +3 -0
- package/dist/commands/blocks.d.ts.map +1 -1
- package/dist/commands/blocks.js +128 -19
- package/dist/commands/blocks.js.map +1 -1
- package/dist/commands/doctor.d.ts +136 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +696 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/remove-blocks.d.ts +4 -1
- package/dist/commands/remove-blocks.d.ts.map +1 -1
- package/dist/commands/remove-blocks.js +24 -6
- package/dist/commands/remove-blocks.js.map +1 -1
- package/dist/index.js +125 -4
- package/dist/index.js.map +1 -1
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
- package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
- package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
- package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
- package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
- package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
- package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
- package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
- package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
- package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
- package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
- package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
- package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
- package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
- package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
- package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
- package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
- package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
- package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
- package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
- package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
- package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
- package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
- package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
- package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
- package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
- package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
- package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
- package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
- package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
- package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
- package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
- package/dist/kits/blocks/components/sections/About.tsx +291 -291
- package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
- package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
- package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
- package/dist/kits/blocks/components/sections/Features.tsx +268 -270
- package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
- package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
- package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
- package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
- package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
- package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
- package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
- package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
- package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
- package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
- package/dist/kits/blocks/components/sections/Team.tsx +309 -309
- package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
- package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
- package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
- package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -34
- package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
- package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
- package/dist/kits/blocks/components/ui/button.tsx +122 -122
- package/dist/kits/blocks/components/ui/card.tsx +95 -95
- package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
- package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
- package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
- package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
- package/dist/kits/blocks/components/ui/input.tsx +27 -27
- package/dist/kits/blocks/components/ui/label.tsx +29 -29
- package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
- package/dist/kits/blocks/components/ui/select.tsx +25 -25
- package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
- package/dist/kits/blocks/components/ui/table.tsx +98 -98
- package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
- package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
- package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
- package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
- package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
- package/dist/kits/blocks/lib/themes.ts +400 -400
- package/dist/kits/blocks/lib/utils.ts +6 -9
- package/dist/kits/blocks/package-deps.json +40 -28
- package/dist/kits/blocks/tsconfig.json +11 -0
- package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/file-operations.d.ts +3 -1
- package/dist/utils/file-operations.d.ts.map +1 -1
- package/dist/utils/file-operations.js +84 -12
- package/dist/utils/file-operations.js.map +1 -1
- package/dist/utils/installation-tracker.d.ts +2 -2
- package/dist/utils/installation-tracker.d.ts.map +1 -1
- package/dist/utils/installation-tracker.js +11 -11
- package/dist/utils/installation-tracker.js.map +1 -1
- package/dist/utils/package-manager.d.ts +6 -0
- package/dist/utils/package-manager.d.ts.map +1 -0
- package/dist/utils/package-manager.js +58 -0
- package/dist/utils/package-manager.js.map +1 -0
- package/dist/utils/yarn-pnp.d.ts +6 -0
- package/dist/utils/yarn-pnp.d.ts.map +1 -0
- package/dist/utils/yarn-pnp.js +39 -0
- package/dist/utils/yarn-pnp.js.map +1 -0
- package/package.json +5 -2
- package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
|
@@ -1,194 +1,193 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "blocks",
|
|
3
|
-
"description": "Frontend UI sections, templates, and core UI primitives (Button, Input, Card, Form primitives, theme providers)",
|
|
4
|
-
"groups": {
|
|
5
|
-
"core": {
|
|
6
|
-
"description": "Core UI primitives, theme providers, globals, and next.config baseline",
|
|
7
|
-
"files": [
|
|
8
|
-
"LICENSE",
|
|
9
|
-
"components/ui/alert-dialog.tsx",
|
|
10
|
-
"components/ui/brand-node.tsx",
|
|
11
|
-
"components/ui/button.tsx",
|
|
12
|
-
"components/ui/card.tsx",
|
|
13
|
-
"components/ui/checkbox.tsx",
|
|
14
|
-
"components/ui/cta-button.tsx",
|
|
15
|
-
"components/ui/dropdown-menu.tsx",
|
|
16
|
-
"components/ui/feature-card.tsx",
|
|
17
|
-
"components/ui/input.tsx",
|
|
18
|
-
"components/ui/label.tsx",
|
|
19
|
-
"components/ui/pricing-card.tsx",
|
|
20
|
-
"components/ui/select.tsx",
|
|
21
|
-
"components/ui/skeleton.tsx",
|
|
22
|
-
"components/ui/switch.tsx",
|
|
23
|
-
"components/ui/table.tsx",
|
|
24
|
-
"components/ui/testimonial-card.tsx",
|
|
25
|
-
"components/ui/textarea.tsx",
|
|
26
|
-
"components/ui/theme-selector.tsx",
|
|
27
|
-
"components/ui/theme-toggle.tsx",
|
|
28
|
-
"components/ui/toaster.tsx",
|
|
29
|
-
"components/enhanced-theme-provider.tsx",
|
|
30
|
-
"components/providers/BlocksAppProviders.tsx",
|
|
31
|
-
"components/app-providers.tsx",
|
|
32
|
-
"components/app-providers.app.tsx",
|
|
33
|
-
"components/app-providers.pages.tsx",
|
|
34
|
-
"components/theme-provider.tsx",
|
|
35
|
-
"lib/themes.ts",
|
|
36
|
-
"lib/utils.ts",
|
|
37
|
-
"app/globals.css",
|
|
38
|
-
"app/tw-animate.css",
|
|
39
|
-
"next.config.ts",
|
|
40
|
-
".nextworks/docs/THEME_GUIDE.md",
|
|
41
|
-
".nextworks/docs/BLOCKS_README.md",
|
|
42
|
-
".nextworks/docs/BLOCKS_QUICKSTART.md"
|
|
43
|
-
]
|
|
44
|
-
},
|
|
45
|
-
"sections": {
|
|
46
|
-
"description": "Standalone marketing sections (Hero, CTA, Pricing, etc.)",
|
|
47
|
-
"files": [
|
|
48
|
-
"components/sections/About.tsx",
|
|
49
|
-
"components/sections/Contact.tsx",
|
|
50
|
-
"components/sections/CTA.tsx",
|
|
51
|
-
"components/sections/
|
|
52
|
-
"components/sections/
|
|
53
|
-
"components/sections/
|
|
54
|
-
"components/sections/
|
|
55
|
-
"components/sections/
|
|
56
|
-
"components/sections/
|
|
57
|
-
"components/sections/
|
|
58
|
-
"components/sections/
|
|
59
|
-
"components/sections/
|
|
60
|
-
"components/sections/
|
|
61
|
-
"components/sections/
|
|
62
|
-
"components/sections/
|
|
63
|
-
|
|
64
|
-
"components/sections/
|
|
65
|
-
"components/sections/
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"components/
|
|
72
|
-
"components/
|
|
73
|
-
"components/
|
|
74
|
-
"components/
|
|
75
|
-
"components/
|
|
76
|
-
"components/
|
|
77
|
-
"components/
|
|
78
|
-
|
|
79
|
-
"components/
|
|
80
|
-
"components/
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"components/
|
|
92
|
-
"components/
|
|
93
|
-
"components/
|
|
94
|
-
"components/
|
|
95
|
-
"components/
|
|
96
|
-
"components/
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"app/
|
|
100
|
-
"app/
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
"app/templates/productlaunch/
|
|
104
|
-
"app/templates/productlaunch/
|
|
105
|
-
|
|
106
|
-
"app/templates/
|
|
107
|
-
"app/templates/
|
|
108
|
-
"app/templates/
|
|
109
|
-
"app/templates/
|
|
110
|
-
"app/templates/
|
|
111
|
-
"app/templates/
|
|
112
|
-
"app/templates/
|
|
113
|
-
"app/templates/
|
|
114
|
-
"app/templates/
|
|
115
|
-
"app/templates/
|
|
116
|
-
"app/templates/
|
|
117
|
-
"app/templates/
|
|
118
|
-
"app/templates/
|
|
119
|
-
"app/templates/
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"app/templates/
|
|
123
|
-
"app/templates/
|
|
124
|
-
"app/templates/
|
|
125
|
-
"app/templates/
|
|
126
|
-
"app/templates/
|
|
127
|
-
"app/templates/
|
|
128
|
-
"app/templates/
|
|
129
|
-
"app/templates/
|
|
130
|
-
"app/templates/
|
|
131
|
-
"app/templates/
|
|
132
|
-
"app/templates/
|
|
133
|
-
"app/templates/
|
|
134
|
-
"app/templates/
|
|
135
|
-
"app/templates/
|
|
136
|
-
|
|
137
|
-
"app/templates/digitalagency/
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
"app/templates/
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"public/placeholders/
|
|
164
|
-
"public/placeholders/
|
|
165
|
-
"public/placeholders/
|
|
166
|
-
"public/placeholders/
|
|
167
|
-
"public/placeholders/
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"public/placeholders/gallery/
|
|
175
|
-
"public/placeholders/gallery/pexels-googledeepmind-
|
|
176
|
-
"public/placeholders/gallery/pexels-googledeepmind-
|
|
177
|
-
"public/placeholders/gallery/pexels-googledeepmind-
|
|
178
|
-
"public/placeholders/
|
|
179
|
-
"public/placeholders/product_launch/
|
|
180
|
-
"public/placeholders/product_launch/
|
|
181
|
-
"public/placeholders/product_launch/
|
|
182
|
-
"public/placeholders/product_launch/
|
|
183
|
-
"public/placeholders/
|
|
184
|
-
"public/placeholders/saas_dashboard/
|
|
185
|
-
"public/placeholders/saas_dashboard/
|
|
186
|
-
|
|
187
|
-
],
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
|
|
194
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "blocks",
|
|
3
|
+
"description": "Frontend UI sections, templates, and core UI primitives (Button, Input, Card, Form primitives, theme providers)",
|
|
4
|
+
"groups": {
|
|
5
|
+
"core": {
|
|
6
|
+
"description": "Core UI primitives, theme providers, globals, and next.config baseline",
|
|
7
|
+
"files": [
|
|
8
|
+
"LICENSE",
|
|
9
|
+
"components/ui/alert-dialog.tsx",
|
|
10
|
+
"components/ui/brand-node.tsx",
|
|
11
|
+
"components/ui/button.tsx",
|
|
12
|
+
"components/ui/card.tsx",
|
|
13
|
+
"components/ui/checkbox.tsx",
|
|
14
|
+
"components/ui/cta-button.tsx",
|
|
15
|
+
"components/ui/dropdown-menu.tsx",
|
|
16
|
+
"components/ui/feature-card.tsx",
|
|
17
|
+
"components/ui/input.tsx",
|
|
18
|
+
"components/ui/label.tsx",
|
|
19
|
+
"components/ui/pricing-card.tsx",
|
|
20
|
+
"components/ui/select.tsx",
|
|
21
|
+
"components/ui/skeleton.tsx",
|
|
22
|
+
"components/ui/switch.tsx",
|
|
23
|
+
"components/ui/table.tsx",
|
|
24
|
+
"components/ui/testimonial-card.tsx",
|
|
25
|
+
"components/ui/textarea.tsx",
|
|
26
|
+
"components/ui/theme-selector.tsx",
|
|
27
|
+
"components/ui/theme-toggle.tsx",
|
|
28
|
+
"components/ui/toaster.tsx",
|
|
29
|
+
"components/enhanced-theme-provider.tsx",
|
|
30
|
+
"components/providers/BlocksAppProviders.tsx",
|
|
31
|
+
"components/app-providers.tsx",
|
|
32
|
+
"components/app-providers.app.tsx",
|
|
33
|
+
"components/app-providers.pages.tsx",
|
|
34
|
+
"components/theme-provider.tsx",
|
|
35
|
+
"lib/themes.ts",
|
|
36
|
+
"lib/utils.ts",
|
|
37
|
+
"app/globals.css",
|
|
38
|
+
"app/tw-animate.css",
|
|
39
|
+
"next.config.ts",
|
|
40
|
+
".nextworks/docs/THEME_GUIDE.md",
|
|
41
|
+
".nextworks/docs/BLOCKS_README.md",
|
|
42
|
+
".nextworks/docs/BLOCKS_QUICKSTART.md"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"sections": {
|
|
46
|
+
"description": "Standalone marketing sections (Hero, CTA, Pricing, etc.)",
|
|
47
|
+
"files": [
|
|
48
|
+
"components/sections/About.tsx",
|
|
49
|
+
"components/sections/Contact.tsx",
|
|
50
|
+
"components/sections/CTA.tsx",
|
|
51
|
+
"components/sections/CommandShowcase.tsx",
|
|
52
|
+
"components/sections/FAQ.tsx",
|
|
53
|
+
"components/sections/Features.tsx",
|
|
54
|
+
"components/sections/Footer.tsx",
|
|
55
|
+
"components/sections/FeaturedProjectShowcase.tsx",
|
|
56
|
+
"components/sections/HeroMotion.tsx",
|
|
57
|
+
"components/sections/HeroOverlay.tsx",
|
|
58
|
+
"components/sections/HeroProductDemo.tsx",
|
|
59
|
+
"components/sections/HeroSplit.tsx",
|
|
60
|
+
"components/sections/HeroWithVideo.tsx",
|
|
61
|
+
"components/sections/Navbar.tsx",
|
|
62
|
+
"components/sections/product-demo/ApprovalInboxPanel.tsx",
|
|
63
|
+
"components/sections/product-demo/DemoStage.tsx",
|
|
64
|
+
"components/sections/product-demo/DemoWindow.tsx",
|
|
65
|
+
"components/sections/product-demo/KnowledgePanel.tsx",
|
|
66
|
+
|
|
67
|
+
"components/sections/product-demo/RunConsolePanel.tsx",
|
|
68
|
+
"components/sections/product-demo/types.ts",
|
|
69
|
+
"components/sections/product-demo/TaskListPanel.tsx",
|
|
70
|
+
"components/sections/product-demo/WorkflowStudioPanel.tsx",
|
|
71
|
+
"components/sections/Newsletter.tsx",
|
|
72
|
+
"components/sections/PortfolioSimple.tsx",
|
|
73
|
+
"components/sections/Pricing.tsx",
|
|
74
|
+
"components/sections/ProcessTimeline.tsx",
|
|
75
|
+
"components/sections/ProjectDeepDive.tsx",
|
|
76
|
+
"components/sections/SelectedWorkRail.tsx",
|
|
77
|
+
"components/sections/ServicesGrid.tsx",
|
|
78
|
+
"components/sections/Team.tsx",
|
|
79
|
+
"components/sections/Testimonials.tsx",
|
|
80
|
+
"components/sections/TrustBadges.tsx"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
"templates": {
|
|
86
|
+
"description": "Full page templates (Product Launch, SaaS Dashboard, Digital Agency, Gallery)",
|
|
87
|
+
"files": [
|
|
88
|
+
"app/templates/productlaunch/page.tsx",
|
|
89
|
+
"app/templates/productlaunch/PresetThemeVars.tsx",
|
|
90
|
+
"app/templates/productlaunch/README.md",
|
|
91
|
+
"app/templates/productlaunch/components/About.tsx",
|
|
92
|
+
"app/templates/productlaunch/components/Contact.tsx",
|
|
93
|
+
"app/templates/productlaunch/components/CTA.tsx",
|
|
94
|
+
"app/templates/productlaunch/components/FAQ.tsx",
|
|
95
|
+
"app/templates/productlaunch/components/Features.tsx",
|
|
96
|
+
"app/templates/productlaunch/components/Footer.tsx",
|
|
97
|
+
"app/templates/productlaunch/components/Hero.tsx",
|
|
98
|
+
"app/templates/productlaunch/components/Navbar.tsx",
|
|
99
|
+
"app/templates/productlaunch/components/Pricing.tsx",
|
|
100
|
+
"app/templates/productlaunch/components/ProcessTimeline.tsx",
|
|
101
|
+
"app/templates/productlaunch/components/ServicesGrid.tsx",
|
|
102
|
+
"app/templates/productlaunch/components/Team.tsx",
|
|
103
|
+
"app/templates/productlaunch/components/Testimonials.tsx",
|
|
104
|
+
"app/templates/productlaunch/components/TrustBadges.tsx",
|
|
105
|
+
|
|
106
|
+
"app/templates/saasdashboard/page.tsx",
|
|
107
|
+
"app/templates/saasdashboard/PresetThemeVars.tsx",
|
|
108
|
+
"app/templates/saasdashboard/README.md",
|
|
109
|
+
"app/templates/saasdashboard/components/Contact.tsx",
|
|
110
|
+
"app/templates/saasdashboard/components/Dashboard.tsx",
|
|
111
|
+
"app/templates/saasdashboard/components/FAQ.tsx",
|
|
112
|
+
"app/templates/saasdashboard/components/Features.tsx",
|
|
113
|
+
"app/templates/saasdashboard/components/Footer.tsx",
|
|
114
|
+
"app/templates/saasdashboard/components/Hero.tsx",
|
|
115
|
+
"app/templates/saasdashboard/components/Hero_mask.tsx",
|
|
116
|
+
"app/templates/saasdashboard/components/Navbar.tsx",
|
|
117
|
+
"app/templates/saasdashboard/components/Pricing.tsx",
|
|
118
|
+
"app/templates/saasdashboard/components/SmoothScroll.tsx",
|
|
119
|
+
"app/templates/saasdashboard/components/Testimonials.tsx",
|
|
120
|
+
"app/templates/saasdashboard/components/TrustBadges.tsx",
|
|
121
|
+
|
|
122
|
+
"app/templates/digitalagency/page.tsx",
|
|
123
|
+
"app/templates/digitalagency/PresetThemeVars.tsx",
|
|
124
|
+
"app/templates/digitalagency/README.md",
|
|
125
|
+
"app/templates/digitalagency/components/About.tsx",
|
|
126
|
+
"app/templates/digitalagency/components/Contact.tsx",
|
|
127
|
+
"app/templates/digitalagency/components/CTA.tsx",
|
|
128
|
+
"app/templates/digitalagency/components/Footer.tsx",
|
|
129
|
+
"app/templates/digitalagency/components/Hero.tsx",
|
|
130
|
+
"app/templates/digitalagency/components/Navbar.tsx",
|
|
131
|
+
"app/templates/digitalagency/components/NetworkPattern.tsx",
|
|
132
|
+
"app/templates/digitalagency/components/Portfolio.tsx",
|
|
133
|
+
"app/templates/digitalagency/components/Pricing.tsx",
|
|
134
|
+
"app/templates/digitalagency/components/Process.tsx",
|
|
135
|
+
"app/templates/digitalagency/components/Services.tsx",
|
|
136
|
+
"app/templates/digitalagency/components/Team.tsx",
|
|
137
|
+
"app/templates/digitalagency/components/Testimonials.tsx",
|
|
138
|
+
|
|
139
|
+
"app/templates/gallery/page.tsx",
|
|
140
|
+
"app/templates/gallery/PresetThemeVars.tsx",
|
|
141
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
142
|
+
|
|
143
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
144
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
145
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
146
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
|
|
147
|
+
"public/placeholders/product_launch/feature_1.png",
|
|
148
|
+
"public/placeholders/product_launch/feature_2.png",
|
|
149
|
+
"public/placeholders/product_launch/feature_3.png",
|
|
150
|
+
"public/placeholders/product_launch/feature_4.png",
|
|
151
|
+
"public/placeholders/product_launch/hero.png",
|
|
152
|
+
"public/placeholders/saas_dashboard/analytics.png",
|
|
153
|
+
"public/placeholders/saas_dashboard/chat.png",
|
|
154
|
+
"public/placeholders/saas_dashboard/projectBoard.png",
|
|
155
|
+
".nextworks/docs/THEME_GUIDE.md"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"gallery": {
|
|
159
|
+
"description": "Gallery of marketing sections (Hero, CTA, Pricing, etc.)",
|
|
160
|
+
"files": [
|
|
161
|
+
"app/templates/gallery/page.tsx",
|
|
162
|
+
"app/templates/gallery/PresetThemeVars.tsx",
|
|
163
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
164
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
165
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
166
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
167
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg"
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
|
|
172
|
+
"files": [
|
|
173
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
174
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
175
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
176
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
177
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
|
|
178
|
+
"public/placeholders/product_launch/feature_1.png",
|
|
179
|
+
"public/placeholders/product_launch/feature_2.png",
|
|
180
|
+
"public/placeholders/product_launch/feature_3.png",
|
|
181
|
+
"public/placeholders/product_launch/feature_4.png",
|
|
182
|
+
"public/placeholders/product_launch/hero.png",
|
|
183
|
+
"public/placeholders/saas_dashboard/analytics.png",
|
|
184
|
+
"public/placeholders/saas_dashboard/chat.png",
|
|
185
|
+
"public/placeholders/saas_dashboard/projectBoard.png"
|
|
186
|
+
],
|
|
187
|
+
"apiRoutes": [],
|
|
188
|
+
"cliKitPath": "cli/kits/blocks",
|
|
189
|
+
"prisma": [],
|
|
190
|
+
"scripts": [],
|
|
191
|
+
"env": [],
|
|
192
|
+
"notes": "Blocks are UI-only. When packaging, include app/globals.css and placeholder assets under public/placeholders. Ensure consumers are instructed to import the theme provider in app/layout.tsx."
|
|
193
|
+
}
|
|
@@ -5,6 +5,9 @@ export interface AddBlocksOptions {
|
|
|
5
5
|
uiOnly?: boolean;
|
|
6
6
|
/** Skip interactive prompts and accept defaults. */
|
|
7
7
|
yes?: boolean;
|
|
8
|
+
/** Force package manager (overrides lockfile detection). */
|
|
9
|
+
pm?: import("../utils/package-manager").PackageManager;
|
|
10
|
+
dryRun?: boolean;
|
|
8
11
|
}
|
|
9
12
|
export declare function addBlocks(options?: AddBlocksOptions): Promise<void>;
|
|
10
13
|
//# sourceMappingURL=blocks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blocks.d.ts","sourceRoot":"","sources":["../../src/commands/blocks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"blocks.d.ts","sourceRoot":"","sources":["../../src/commands/blocks.ts"],"names":[],"mappings":"AAgCA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,oDAAoD;IACpD,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,4DAA4D;IAC5D,EAAE,CAAC,EAAE,OAAO,0BAA0B,EAAE,cAAc,CAAC;IACvD,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAsB,SAAS,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC,CAokB7E"}
|