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.
Files changed (111) hide show
  1. package/README.md +283 -282
  2. package/dist/cli_manifests/blocks_manifest.json +198 -175
  3. package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +101 -100
  4. package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +105 -104
  5. package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +1 -1
  6. package/dist/kits/blocks/app/templates/aiworkflow/PresetThemeVars.tsx +58 -0
  7. package/dist/kits/blocks/app/templates/aiworkflow/README.md +46 -0
  8. package/dist/kits/blocks/app/templates/aiworkflow/components/CTA.tsx +44 -0
  9. package/dist/kits/blocks/app/templates/aiworkflow/components/Contact.tsx +105 -0
  10. package/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +63 -0
  11. package/dist/kits/blocks/app/templates/aiworkflow/components/Features.tsx +65 -0
  12. package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +109 -0
  13. package/dist/kits/blocks/app/templates/aiworkflow/components/Hero.tsx +636 -0
  14. package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +90 -0
  15. package/dist/kits/blocks/app/templates/aiworkflow/components/Pricing.tsx +86 -0
  16. package/dist/kits/blocks/app/templates/aiworkflow/components/ProcessTimeline.tsx +103 -0
  17. package/dist/kits/blocks/app/templates/aiworkflow/components/Testimonials.tsx +56 -0
  18. package/dist/kits/blocks/app/templates/aiworkflow/components/TrustBadges.tsx +59 -0
  19. package/dist/kits/blocks/app/templates/aiworkflow/page.tsx +43 -0
  20. package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
  21. package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -42
  22. package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
  23. package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
  24. package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
  25. package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
  26. package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
  27. package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
  28. package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +84 -84
  29. package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -75
  30. package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -62
  31. package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -84
  32. package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -50
  33. package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
  34. package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -86
  35. package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -83
  36. package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
  37. package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -88
  38. package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -116
  39. package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
  40. package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
  41. package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
  42. package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
  43. package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -90
  44. package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
  45. package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
  46. package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
  47. package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -44
  48. package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -129
  49. package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
  50. package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
  51. package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -90
  52. package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
  53. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -104
  54. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -126
  55. package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -117
  56. package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
  57. package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -96
  58. package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
  59. package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
  60. package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
  61. package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -195
  62. package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
  63. package/dist/kits/blocks/components/sections/About.tsx +291 -291
  64. package/dist/kits/blocks/components/sections/CTA.tsx +257 -257
  65. package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
  66. package/dist/kits/blocks/components/sections/FAQ.tsx +214 -214
  67. package/dist/kits/blocks/components/sections/Features.tsx +268 -268
  68. package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
  69. package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
  70. package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
  71. package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +236 -0
  72. package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
  73. package/dist/kits/blocks/components/sections/Navbar.tsx +350 -350
  74. package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -549
  75. package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
  76. package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
  77. package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
  78. package/dist/kits/blocks/components/sections/Team.tsx +309 -309
  79. package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
  80. package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
  81. package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +125 -0
  82. package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +397 -0
  83. package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +128 -0
  84. package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +127 -0
  85. package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +150 -0
  86. package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +191 -0
  87. package/dist/kits/blocks/components/sections/product-demo/types.ts +193 -0
  88. package/dist/kits/blocks/components/theme-provider.tsx +1 -1
  89. package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
  90. package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
  91. package/dist/kits/blocks/components/ui/button.tsx +122 -122
  92. package/dist/kits/blocks/components/ui/card.tsx +95 -95
  93. package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
  94. package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
  95. package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
  96. package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
  97. package/dist/kits/blocks/components/ui/input.tsx +27 -27
  98. package/dist/kits/blocks/components/ui/label.tsx +29 -29
  99. package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
  100. package/dist/kits/blocks/components/ui/select.tsx +25 -25
  101. package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
  102. package/dist/kits/blocks/components/ui/table.tsx +98 -98
  103. package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
  104. package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
  105. package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -243
  106. package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
  107. package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
  108. package/dist/kits/blocks/lib/themes.ts +400 -400
  109. package/dist/kits/blocks/lib/utils.ts +6 -6
  110. package/dist/kits/blocks/package-deps.json +3 -3
  111. 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/HeroSplit.tsx",
57
- "components/sections/Navbar.tsx",
58
- "components/sections/Newsletter.tsx",
59
- "components/sections/PortfolioSimple.tsx",
60
- "components/sections/Pricing.tsx",
61
- "components/sections/ProcessTimeline.tsx",
62
- "components/sections/ServicesGrid.tsx",
63
- "components/sections/Team.tsx",
64
- "components/sections/Testimonials.tsx",
65
- "components/sections/TrustBadges.tsx"
66
- ]
67
- },
68
- "templates": {
69
- "description": "Full page templates (Product Launch, SaaS Dashboard, Digital Agency, Gallery)",
70
- "files": [
71
- "app/templates/productlaunch/page.tsx",
72
- "app/templates/productlaunch/PresetThemeVars.tsx",
73
- "app/templates/productlaunch/README.md",
74
- "app/templates/productlaunch/components/About.tsx",
75
- "app/templates/productlaunch/components/Contact.tsx",
76
- "app/templates/productlaunch/components/CTA.tsx",
77
- "app/templates/productlaunch/components/FAQ.tsx",
78
- "app/templates/productlaunch/components/Features.tsx",
79
- "app/templates/productlaunch/components/Footer.tsx",
80
- "app/templates/productlaunch/components/Hero.tsx",
81
- "app/templates/productlaunch/components/Navbar.tsx",
82
- "app/templates/productlaunch/components/Pricing.tsx",
83
- "app/templates/productlaunch/components/ProcessTimeline.tsx",
84
- "app/templates/productlaunch/components/ServicesGrid.tsx",
85
- "app/templates/productlaunch/components/Team.tsx",
86
- "app/templates/productlaunch/components/Testimonials.tsx",
87
- "app/templates/productlaunch/components/TrustBadges.tsx",
88
-
89
- "app/templates/saasdashboard/page.tsx",
90
- "app/templates/saasdashboard/PresetThemeVars.tsx",
91
- "app/templates/saasdashboard/README.md",
92
- "app/templates/saasdashboard/components/Contact.tsx",
93
- "app/templates/saasdashboard/components/Dashboard.tsx",
94
- "app/templates/saasdashboard/components/FAQ.tsx",
95
- "app/templates/saasdashboard/components/Features.tsx",
96
- "app/templates/saasdashboard/components/Footer.tsx",
97
- "app/templates/saasdashboard/components/Hero.tsx",
98
- "app/templates/saasdashboard/components/Hero_mask.tsx",
99
- "app/templates/saasdashboard/components/Navbar.tsx",
100
- "app/templates/saasdashboard/components/Pricing.tsx",
101
- "app/templates/saasdashboard/components/SmoothScroll.tsx",
102
- "app/templates/saasdashboard/components/Testimonials.tsx",
103
- "app/templates/saasdashboard/components/TrustBadges.tsx",
104
-
105
- "app/templates/digitalagency/page.tsx",
106
- "app/templates/digitalagency/PresetThemeVars.tsx",
107
- "app/templates/digitalagency/README.md",
108
- "app/templates/digitalagency/components/About.tsx",
109
- "app/templates/digitalagency/components/Contact.tsx",
110
- "app/templates/digitalagency/components/CTA.tsx",
111
- "app/templates/digitalagency/components/Footer.tsx",
112
- "app/templates/digitalagency/components/Hero.tsx",
113
- "app/templates/digitalagency/components/Navbar.tsx",
114
- "app/templates/digitalagency/components/NetworkPattern.tsx",
115
- "app/templates/digitalagency/components/Portfolio.tsx",
116
- "app/templates/digitalagency/components/Pricing.tsx",
117
- "app/templates/digitalagency/components/Process.tsx",
118
- "app/templates/digitalagency/components/Services.tsx",
119
- "app/templates/digitalagency/components/Team.tsx",
120
- "app/templates/digitalagency/components/Testimonials.tsx",
121
-
122
- "app/templates/gallery/page.tsx",
123
- "app/templates/gallery/PresetThemeVars.tsx",
124
- "public/placeholders/gallery/hero-pexels-broken-9945014.avif",
125
- "public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
126
- "public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
127
- "public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
128
- "public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
129
- "public/placeholders/product_launch/feature_1.png",
130
- "public/placeholders/product_launch/feature_2.png",
131
- "public/placeholders/product_launch/feature_3.png",
132
- "public/placeholders/product_launch/feature_4.png",
133
- "public/placeholders/product_launch/hero.png",
134
- "public/placeholders/saas_dashboard/analytics.png",
135
- "public/placeholders/saas_dashboard/chat.png",
136
- "public/placeholders/saas_dashboard/projectBoard.png",
137
- ".nextworks/docs/THEME_GUIDE.md"
138
- ]
139
- },
140
- "gallery": {
141
- "description": "Gallery of marketing sections (Hero, CTA, Pricing, etc.)",
142
- "files": [
143
- "app/templates/gallery/page.tsx",
144
- "app/templates/gallery/PresetThemeVars.tsx",
145
- "public/placeholders/gallery/hero-pexels-broken-9945014.avif",
146
- "public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
147
- "public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
148
- "public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
149
- "public/placeholders/gallery/pexels-googledeepmind-25626436.jpg"
150
- ]
151
- }
152
- },
153
-
154
- "files": [
155
- "public/placeholders/gallery/hero-pexels-broken-9945014.avif",
156
- "public/placeholders/gallery/pexels-googledeepmind-25626431.jpg",
157
- "public/placeholders/gallery/pexels-googledeepmind-25626432.jpg",
158
- "public/placeholders/gallery/pexels-googledeepmind-25626434.jpg",
159
- "public/placeholders/gallery/pexels-googledeepmind-25626436.jpg",
160
- "public/placeholders/product_launch/feature_1.png",
161
- "public/placeholders/product_launch/feature_2.png",
162
- "public/placeholders/product_launch/feature_3.png",
163
- "public/placeholders/product_launch/feature_4.png",
164
- "public/placeholders/product_launch/hero.png",
165
- "public/placeholders/saas_dashboard/analytics.png",
166
- "public/placeholders/saas_dashboard/chat.png",
167
- "public/placeholders/saas_dashboard/projectBoard.png"
168
- ],
169
- "apiRoutes": [],
170
- "cliKitPath": "cli/kits/blocks",
171
- "prisma": [],
172
- "scripts": [],
173
- "env": [],
174
- "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."
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/gallery`
39
-
40
- If those load and look styled, you’re in good shape.
41
-
42
- ---
43
-
44
- ## 3) If styling is missing (quick checks)
45
-
46
- Blocks relies on global CSS files:
47
-
48
- - `app/globals.css`
49
- - `app/tw-animate.css`
50
-
51
- The correct import location depends on your router:
52
-
53
- - **App Router:** `app/layout.tsx` should import `./globals.css` (and `./tw-animate.css` if used).
54
- - **Pages Router:** `pages/_app.tsx` should import:
55
- - `../app/globals.css`
56
- - `../app/tw-animate.css`
57
-
58
- The CLI normally patches this automatically.
59
-
60
- ---
61
-
62
- ## 4) Where the files are
63
-
64
- ### Template routes
65
-
66
- - **App Router:** `app/templates/<template>/page.tsx`
67
- - **Pages Router:** `pages/templates/<template>/index.tsx`
68
-
69
- Supporting template components live alongside the template:
70
-
71
- - App Router: `app/templates/<template>/**`
72
- - Pages Router: `components/templates/<template>/**` (kept outside `pages/` so helpers aren’t treated as pages)
73
-
74
- ### Sections and UI primitives
75
-
76
- - Sections: `components/sections/**`
77
- - UI primitives: `components/ui/**`
78
-
79
- ---
80
-
81
- ## 5) What to edit first (common tasks)
82
-
83
- - Customize a template page:
84
- - edit its route file (see paths above)
85
- - tweak the imported sections/components
86
-
87
- - Customize a reusable section (Navbar/Hero/etc.):
88
- - edit `components/sections/<Section>.tsx`
89
-
90
- - Customize theme/palette:
91
- - see `.nextworks/docs/THEME_GUIDE.md`
92
- - start with `lib/themes.ts`
93
- - each template has a `PresetThemeVars` file you can modify
94
-
95
- ---
96
-
97
- ## 6) Need deeper detail?
98
-
99
- - `.nextworks/docs/BLOCKS_README.md` (what got installed + where things live)
100
- - `.nextworks/docs/THEME_GUIDE.md` (theme system + presets)
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)