nextworks 0.2.0-alpha.11 → 0.2.0-alpha.13
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 +283 -282
- package/dist/cli_manifests/blocks_manifest.json +198 -175
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +101 -100
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +105 -104
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +1 -1
- package/dist/kits/blocks/app/templates/aiworkflow/PresetThemeVars.tsx +58 -0
- package/dist/kits/blocks/app/templates/aiworkflow/README.md +46 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/CTA.tsx +44 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Contact.tsx +105 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +63 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Features.tsx +65 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +109 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Hero.tsx +636 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +90 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Pricing.tsx +86 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/ProcessTimeline.tsx +103 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Testimonials.tsx +56 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/TrustBadges.tsx +59 -0
- package/dist/kits/blocks/app/templates/aiworkflow/page.tsx +43 -0
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -42
- 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 +84 -84
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -75
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -62
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -50
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -86
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -83
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -88
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -116
- 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 -90
- 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 -44
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -129
- 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 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -104
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -126
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -117
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -96
- 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 -195
- 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 -257
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -214
- package/dist/kits/blocks/components/sections/Features.tsx +268 -268
- 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 +236 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/Navbar.tsx +350 -350
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -549
- 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/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 +125 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +397 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +127 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +150 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +191 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +193 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -1
- 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 -243
- 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 -6
- package/dist/kits/blocks/package-deps.json +3 -3
- package/package.json +1 -1
|
@@ -1,175 +1,198 @@
|
|
|
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/FAQ.tsx",
|
|
52
|
-
"components/sections/Features.tsx",
|
|
53
|
-
"components/sections/Footer.tsx",
|
|
54
|
-
"components/sections/HeroMotion.tsx",
|
|
55
|
-
"components/sections/HeroOverlay.tsx",
|
|
56
|
-
"components/sections/
|
|
57
|
-
"components/sections/
|
|
58
|
-
"components/sections/
|
|
59
|
-
"components/sections/
|
|
60
|
-
"components/sections/
|
|
61
|
-
"components/sections/
|
|
62
|
-
"components/sections/
|
|
63
|
-
"components/sections/
|
|
64
|
-
"components/sections/
|
|
65
|
-
"components/sections/
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"app/templates/productlaunch/
|
|
80
|
-
"app/templates/productlaunch/
|
|
81
|
-
"app/templates/productlaunch/
|
|
82
|
-
"app/templates/productlaunch/components/
|
|
83
|
-
"app/templates/productlaunch/components/
|
|
84
|
-
"app/templates/productlaunch/components/
|
|
85
|
-
"app/templates/productlaunch/components/
|
|
86
|
-
"app/templates/productlaunch/components/
|
|
87
|
-
"app/templates/productlaunch/components/
|
|
88
|
-
|
|
89
|
-
"app/templates/
|
|
90
|
-
"app/templates/
|
|
91
|
-
"app/templates/
|
|
92
|
-
"app/templates/
|
|
93
|
-
"app/templates/
|
|
94
|
-
"app/templates/
|
|
95
|
-
"app/templates/
|
|
96
|
-
|
|
97
|
-
"app/templates/saasdashboard/
|
|
98
|
-
"app/templates/saasdashboard/
|
|
99
|
-
"app/templates/saasdashboard/
|
|
100
|
-
"app/templates/saasdashboard/components/
|
|
101
|
-
"app/templates/saasdashboard/components/
|
|
102
|
-
"app/templates/saasdashboard/components/
|
|
103
|
-
"app/templates/saasdashboard/components/
|
|
104
|
-
|
|
105
|
-
"app/templates/
|
|
106
|
-
"app/templates/
|
|
107
|
-
"app/templates/
|
|
108
|
-
"app/templates/
|
|
109
|
-
"app/templates/
|
|
110
|
-
"app/templates/
|
|
111
|
-
"app/templates/
|
|
112
|
-
|
|
113
|
-
"app/templates/digitalagency/
|
|
114
|
-
"app/templates/digitalagency/
|
|
115
|
-
"app/templates/digitalagency/
|
|
116
|
-
"app/templates/digitalagency/components/
|
|
117
|
-
"app/templates/digitalagency/components/
|
|
118
|
-
"app/templates/digitalagency/components/
|
|
119
|
-
"app/templates/digitalagency/components/
|
|
120
|
-
"app/templates/digitalagency/components/
|
|
121
|
-
|
|
122
|
-
"app/templates/
|
|
123
|
-
"app/templates/
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
"app/templates/
|
|
144
|
-
"app/templates/
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"public/placeholders/gallery/pexels-
|
|
148
|
-
"public/placeholders/gallery/pexels-googledeepmind-
|
|
149
|
-
"public/placeholders/gallery/pexels-googledeepmind-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
"
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
}
|
|
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/FAQ.tsx",
|
|
52
|
+
"components/sections/Features.tsx",
|
|
53
|
+
"components/sections/Footer.tsx",
|
|
54
|
+
"components/sections/HeroMotion.tsx",
|
|
55
|
+
"components/sections/HeroOverlay.tsx",
|
|
56
|
+
"components/sections/HeroProductDemo.tsx",
|
|
57
|
+
"components/sections/HeroSplit.tsx",
|
|
58
|
+
"components/sections/Navbar.tsx",
|
|
59
|
+
"components/sections/product-demo/ApprovalInboxPanel.tsx",
|
|
60
|
+
"components/sections/product-demo/DemoStage.tsx",
|
|
61
|
+
"components/sections/product-demo/DemoWindow.tsx",
|
|
62
|
+
"components/sections/product-demo/KnowledgePanel.tsx",
|
|
63
|
+
"components/sections/product-demo/RunConsolePanel.tsx",
|
|
64
|
+
"components/sections/product-demo/types.ts",
|
|
65
|
+
"components/sections/product-demo/WorkflowStudioPanel.tsx",
|
|
66
|
+
"components/sections/Newsletter.tsx",
|
|
67
|
+
"components/sections/PortfolioSimple.tsx",
|
|
68
|
+
"components/sections/Pricing.tsx",
|
|
69
|
+
"components/sections/ProcessTimeline.tsx",
|
|
70
|
+
"components/sections/ServicesGrid.tsx",
|
|
71
|
+
"components/sections/Team.tsx",
|
|
72
|
+
"components/sections/Testimonials.tsx",
|
|
73
|
+
"components/sections/TrustBadges.tsx"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"templates": {
|
|
77
|
+
"description": "Full page templates (Product Launch, SaaS Dashboard, Digital Agency, Gallery)",
|
|
78
|
+
"files": [
|
|
79
|
+
"app/templates/productlaunch/page.tsx",
|
|
80
|
+
"app/templates/productlaunch/PresetThemeVars.tsx",
|
|
81
|
+
"app/templates/productlaunch/README.md",
|
|
82
|
+
"app/templates/productlaunch/components/About.tsx",
|
|
83
|
+
"app/templates/productlaunch/components/Contact.tsx",
|
|
84
|
+
"app/templates/productlaunch/components/CTA.tsx",
|
|
85
|
+
"app/templates/productlaunch/components/FAQ.tsx",
|
|
86
|
+
"app/templates/productlaunch/components/Features.tsx",
|
|
87
|
+
"app/templates/productlaunch/components/Footer.tsx",
|
|
88
|
+
"app/templates/productlaunch/components/Hero.tsx",
|
|
89
|
+
"app/templates/productlaunch/components/Navbar.tsx",
|
|
90
|
+
"app/templates/productlaunch/components/Pricing.tsx",
|
|
91
|
+
"app/templates/productlaunch/components/ProcessTimeline.tsx",
|
|
92
|
+
"app/templates/productlaunch/components/ServicesGrid.tsx",
|
|
93
|
+
"app/templates/productlaunch/components/Team.tsx",
|
|
94
|
+
"app/templates/productlaunch/components/Testimonials.tsx",
|
|
95
|
+
"app/templates/productlaunch/components/TrustBadges.tsx",
|
|
96
|
+
|
|
97
|
+
"app/templates/saasdashboard/page.tsx",
|
|
98
|
+
"app/templates/saasdashboard/PresetThemeVars.tsx",
|
|
99
|
+
"app/templates/saasdashboard/README.md",
|
|
100
|
+
"app/templates/saasdashboard/components/Contact.tsx",
|
|
101
|
+
"app/templates/saasdashboard/components/Dashboard.tsx",
|
|
102
|
+
"app/templates/saasdashboard/components/FAQ.tsx",
|
|
103
|
+
"app/templates/saasdashboard/components/Features.tsx",
|
|
104
|
+
"app/templates/saasdashboard/components/Footer.tsx",
|
|
105
|
+
"app/templates/saasdashboard/components/Hero.tsx",
|
|
106
|
+
"app/templates/saasdashboard/components/Hero_mask.tsx",
|
|
107
|
+
"app/templates/saasdashboard/components/Navbar.tsx",
|
|
108
|
+
"app/templates/saasdashboard/components/Pricing.tsx",
|
|
109
|
+
"app/templates/saasdashboard/components/SmoothScroll.tsx",
|
|
110
|
+
"app/templates/saasdashboard/components/Testimonials.tsx",
|
|
111
|
+
"app/templates/saasdashboard/components/TrustBadges.tsx",
|
|
112
|
+
|
|
113
|
+
"app/templates/digitalagency/page.tsx",
|
|
114
|
+
"app/templates/digitalagency/PresetThemeVars.tsx",
|
|
115
|
+
"app/templates/digitalagency/README.md",
|
|
116
|
+
"app/templates/digitalagency/components/About.tsx",
|
|
117
|
+
"app/templates/digitalagency/components/Contact.tsx",
|
|
118
|
+
"app/templates/digitalagency/components/CTA.tsx",
|
|
119
|
+
"app/templates/digitalagency/components/Footer.tsx",
|
|
120
|
+
"app/templates/digitalagency/components/Hero.tsx",
|
|
121
|
+
"app/templates/digitalagency/components/Navbar.tsx",
|
|
122
|
+
"app/templates/digitalagency/components/NetworkPattern.tsx",
|
|
123
|
+
"app/templates/digitalagency/components/Portfolio.tsx",
|
|
124
|
+
"app/templates/digitalagency/components/Pricing.tsx",
|
|
125
|
+
"app/templates/digitalagency/components/Process.tsx",
|
|
126
|
+
"app/templates/digitalagency/components/Services.tsx",
|
|
127
|
+
"app/templates/digitalagency/components/Team.tsx",
|
|
128
|
+
"app/templates/digitalagency/components/Testimonials.tsx",
|
|
129
|
+
|
|
130
|
+
"app/templates/gallery/page.tsx",
|
|
131
|
+
"app/templates/gallery/PresetThemeVars.tsx",
|
|
132
|
+
|
|
133
|
+
"app/templates/aiworkflow/page.tsx",
|
|
134
|
+
"app/templates/aiworkflow/PresetThemeVars.tsx",
|
|
135
|
+
"app/templates/aiworkflow/README.md",
|
|
136
|
+
"app/templates/aiworkflow/components/Contact.tsx",
|
|
137
|
+
"app/templates/aiworkflow/components/CTA.tsx",
|
|
138
|
+
"app/templates/aiworkflow/components/FAQ.tsx",
|
|
139
|
+
"app/templates/aiworkflow/components/Features.tsx",
|
|
140
|
+
"app/templates/aiworkflow/components/Footer.tsx",
|
|
141
|
+
"app/templates/aiworkflow/components/Hero.tsx",
|
|
142
|
+
"app/templates/aiworkflow/components/Navbar.tsx",
|
|
143
|
+
"app/templates/aiworkflow/components/Pricing.tsx",
|
|
144
|
+
"app/templates/aiworkflow/components/ProcessTimeline.tsx",
|
|
145
|
+
"app/templates/aiworkflow/components/Testimonials.tsx",
|
|
146
|
+
"app/templates/aiworkflow/components/TrustBadges.tsx",
|
|
147
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
148
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
149
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
150
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
151
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
|
|
152
|
+
"public/placeholders/product_launch/feature_1.png",
|
|
153
|
+
"public/placeholders/product_launch/feature_2.png",
|
|
154
|
+
"public/placeholders/product_launch/feature_3.png",
|
|
155
|
+
"public/placeholders/product_launch/feature_4.png",
|
|
156
|
+
"public/placeholders/product_launch/hero.png",
|
|
157
|
+
"public/placeholders/saas_dashboard/analytics.png",
|
|
158
|
+
"public/placeholders/saas_dashboard/chat.png",
|
|
159
|
+
"public/placeholders/saas_dashboard/projectBoard.png",
|
|
160
|
+
".nextworks/docs/THEME_GUIDE.md"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
"gallery": {
|
|
164
|
+
"description": "Gallery of marketing sections (Hero, CTA, Pricing, etc.)",
|
|
165
|
+
"files": [
|
|
166
|
+
"app/templates/gallery/page.tsx",
|
|
167
|
+
"app/templates/gallery/PresetThemeVars.tsx",
|
|
168
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
169
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
170
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
171
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
172
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg"
|
|
173
|
+
]
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
|
|
177
|
+
"files": [
|
|
178
|
+
"public/placeholders/gallery/hero-pexels-broken-9945014.avif",
|
|
179
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
|
|
180
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
|
|
181
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
|
|
182
|
+
"public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
|
|
183
|
+
"public/placeholders/product_launch/feature_1.png",
|
|
184
|
+
"public/placeholders/product_launch/feature_2.png",
|
|
185
|
+
"public/placeholders/product_launch/feature_3.png",
|
|
186
|
+
"public/placeholders/product_launch/feature_4.png",
|
|
187
|
+
"public/placeholders/product_launch/hero.png",
|
|
188
|
+
"public/placeholders/saas_dashboard/analytics.png",
|
|
189
|
+
"public/placeholders/saas_dashboard/chat.png",
|
|
190
|
+
"public/placeholders/saas_dashboard/projectBoard.png"
|
|
191
|
+
],
|
|
192
|
+
"apiRoutes": [],
|
|
193
|
+
"cliKitPath": "cli/kits/blocks",
|
|
194
|
+
"prisma": [],
|
|
195
|
+
"scripts": [],
|
|
196
|
+
"env": [],
|
|
197
|
+
"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."
|
|
198
|
+
}
|
|
@@ -1,100 +1,101 @@
|
|
|
1
|
-
# Blocks Quickstart (in your project)
|
|
2
|
-
|
|
3
|
-
This is the fastest path to verify your Blocks install is working and find the right files to edit.
|
|
4
|
-
|
|
5
|
-
> Blocks is a “copy into your repo” kit (shadcn-style): you own the files and can modify them directly.
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## 0) Prereqs
|
|
10
|
-
|
|
11
|
-
- Next.js project (App Router **or** Pages Router)
|
|
12
|
-
- TypeScript + Tailwind CSS
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
## 1) Install Blocks (recommended)
|
|
17
|
-
|
|
18
|
-
From your app root:
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
npx nextworks@latest add blocks --templates
|
|
22
|
-
npm install
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## 2) Run dev and verify routes
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
npm run dev
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
Then visit:
|
|
34
|
-
|
|
35
|
-
- `http://localhost:3000/templates/productlaunch`
|
|
36
|
-
- `http://localhost:3000/templates/saasdashboard`
|
|
37
|
-
- `http://localhost:3000/templates/digitalagency`
|
|
38
|
-
- `http://localhost:3000/templates/
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- `app/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
- **
|
|
55
|
-
|
|
56
|
-
- `../app/
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
- **
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
- `.nextworks/docs/
|
|
1
|
+
# Blocks Quickstart (in your project)
|
|
2
|
+
|
|
3
|
+
This is the fastest path to verify your Blocks install is working and find the right files to edit.
|
|
4
|
+
|
|
5
|
+
> Blocks is a “copy into your repo” kit (shadcn-style): you own the files and can modify them directly.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 0) Prereqs
|
|
10
|
+
|
|
11
|
+
- Next.js project (App Router **or** Pages Router)
|
|
12
|
+
- TypeScript + Tailwind CSS
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 1) Install Blocks (recommended)
|
|
17
|
+
|
|
18
|
+
From your app root:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx nextworks@latest add blocks --templates
|
|
22
|
+
npm install
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 2) Run dev and verify routes
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm run dev
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Then visit:
|
|
34
|
+
|
|
35
|
+
- `http://localhost:3000/templates/productlaunch`
|
|
36
|
+
- `http://localhost:3000/templates/saasdashboard`
|
|
37
|
+
- `http://localhost:3000/templates/digitalagency`
|
|
38
|
+
- `http://localhost:3000/templates/aiworkflow`
|
|
39
|
+
- `http://localhost:3000/templates/gallery`
|
|
40
|
+
|
|
41
|
+
If those load and look styled, you’re in good shape.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 3) If styling is missing (quick checks)
|
|
46
|
+
|
|
47
|
+
Blocks relies on global CSS files:
|
|
48
|
+
|
|
49
|
+
- `app/globals.css`
|
|
50
|
+
- `app/tw-animate.css`
|
|
51
|
+
|
|
52
|
+
The correct import location depends on your router:
|
|
53
|
+
|
|
54
|
+
- **App Router:** `app/layout.tsx` should import `./globals.css` (and `./tw-animate.css` if used).
|
|
55
|
+
- **Pages Router:** `pages/_app.tsx` should import:
|
|
56
|
+
- `../app/globals.css`
|
|
57
|
+
- `../app/tw-animate.css`
|
|
58
|
+
|
|
59
|
+
The CLI normally patches this automatically.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## 4) Where the files are
|
|
64
|
+
|
|
65
|
+
### Template routes
|
|
66
|
+
|
|
67
|
+
- **App Router:** `app/templates/<template>/page.tsx`
|
|
68
|
+
- **Pages Router:** `pages/templates/<template>/index.tsx`
|
|
69
|
+
|
|
70
|
+
Supporting template components live alongside the template:
|
|
71
|
+
|
|
72
|
+
- App Router: `app/templates/<template>/**`
|
|
73
|
+
- Pages Router: `components/templates/<template>/**` (kept outside `pages/` so helpers aren’t treated as pages)
|
|
74
|
+
|
|
75
|
+
### Sections and UI primitives
|
|
76
|
+
|
|
77
|
+
- Sections: `components/sections/**`
|
|
78
|
+
- UI primitives: `components/ui/**`
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## 5) What to edit first (common tasks)
|
|
83
|
+
|
|
84
|
+
- Customize a template page:
|
|
85
|
+
- edit its route file (see paths above)
|
|
86
|
+
- tweak the imported sections/components
|
|
87
|
+
|
|
88
|
+
- Customize a reusable section (Navbar/Hero/etc.):
|
|
89
|
+
- edit `components/sections/<Section>.tsx`
|
|
90
|
+
|
|
91
|
+
- Customize theme/palette:
|
|
92
|
+
- see `.nextworks/docs/THEME_GUIDE.md`
|
|
93
|
+
- start with `lib/themes.ts`
|
|
94
|
+
- each template has a `PresetThemeVars` file you can modify
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## 6) Need deeper detail?
|
|
99
|
+
|
|
100
|
+
- `.nextworks/docs/BLOCKS_README.md` (what got installed + where things live)
|
|
101
|
+
- `.nextworks/docs/THEME_GUIDE.md` (theme system + presets)
|