nextworks 0.2.0-alpha.2 → 0.2.0-alpha.21

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 (145) hide show
  1. package/README.md +280 -228
  2. package/dist/cli_manifests/blocks_manifest.json +193 -194
  3. package/dist/commands/blocks.d.ts +3 -0
  4. package/dist/commands/blocks.d.ts.map +1 -1
  5. package/dist/commands/blocks.js +128 -19
  6. package/dist/commands/blocks.js.map +1 -1
  7. package/dist/commands/doctor.d.ts +136 -0
  8. package/dist/commands/doctor.d.ts.map +1 -0
  9. package/dist/commands/doctor.js +696 -0
  10. package/dist/commands/doctor.js.map +1 -0
  11. package/dist/commands/remove-blocks.d.ts +4 -1
  12. package/dist/commands/remove-blocks.d.ts.map +1 -1
  13. package/dist/commands/remove-blocks.js +24 -6
  14. package/dist/commands/remove-blocks.js.map +1 -1
  15. package/dist/index.js +125 -4
  16. package/dist/index.js.map +1 -1
  17. package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
  18. package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
  19. package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
  20. package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
  21. package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
  22. package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
  23. package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
  24. package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
  25. package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
  26. package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
  27. package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
  28. package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
  29. package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
  30. package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
  31. package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
  32. package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
  33. package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
  34. package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
  35. package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
  36. package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
  37. package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
  38. package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
  39. package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
  40. package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
  41. package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
  42. package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
  43. package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
  44. package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
  45. package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
  46. package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
  47. package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
  48. package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
  49. package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
  50. package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
  51. package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
  52. package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
  53. package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
  54. package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
  55. package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
  56. package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
  57. package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
  58. package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
  59. package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
  60. package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
  61. package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
  62. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
  63. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
  64. package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
  65. package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
  66. package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
  67. package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
  68. package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
  69. package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
  70. package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
  71. package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
  72. package/dist/kits/blocks/components/sections/About.tsx +291 -291
  73. package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
  74. package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
  75. package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
  76. package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
  77. package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
  78. package/dist/kits/blocks/components/sections/Features.tsx +268 -270
  79. package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
  80. package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
  81. package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
  82. package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
  83. package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
  84. package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
  85. package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
  86. package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
  87. package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
  88. package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
  89. package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
  90. package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
  91. package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
  92. package/dist/kits/blocks/components/sections/Team.tsx +309 -309
  93. package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
  94. package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
  95. package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
  96. package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
  97. package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
  98. package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
  99. package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
  100. package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
  101. package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
  102. package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
  103. package/dist/kits/blocks/components/theme-provider.tsx +1 -34
  104. package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
  105. package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
  106. package/dist/kits/blocks/components/ui/button.tsx +122 -122
  107. package/dist/kits/blocks/components/ui/card.tsx +95 -95
  108. package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
  109. package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
  110. package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
  111. package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
  112. package/dist/kits/blocks/components/ui/input.tsx +27 -27
  113. package/dist/kits/blocks/components/ui/label.tsx +29 -29
  114. package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
  115. package/dist/kits/blocks/components/ui/select.tsx +25 -25
  116. package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
  117. package/dist/kits/blocks/components/ui/table.tsx +98 -98
  118. package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
  119. package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
  120. package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
  121. package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
  122. package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
  123. package/dist/kits/blocks/lib/themes.ts +400 -400
  124. package/dist/kits/blocks/lib/utils.ts +6 -9
  125. package/dist/kits/blocks/package-deps.json +40 -28
  126. package/dist/kits/blocks/tsconfig.json +11 -0
  127. package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
  128. package/dist/utils/file-operations.d.ts +3 -1
  129. package/dist/utils/file-operations.d.ts.map +1 -1
  130. package/dist/utils/file-operations.js +84 -12
  131. package/dist/utils/file-operations.js.map +1 -1
  132. package/dist/utils/installation-tracker.d.ts +2 -2
  133. package/dist/utils/installation-tracker.d.ts.map +1 -1
  134. package/dist/utils/installation-tracker.js +11 -11
  135. package/dist/utils/installation-tracker.js.map +1 -1
  136. package/dist/utils/package-manager.d.ts +6 -0
  137. package/dist/utils/package-manager.d.ts.map +1 -0
  138. package/dist/utils/package-manager.js +58 -0
  139. package/dist/utils/package-manager.js.map +1 -0
  140. package/dist/utils/yarn-pnp.d.ts +6 -0
  141. package/dist/utils/yarn-pnp.d.ts.map +1 -0
  142. package/dist/utils/yarn-pnp.js +39 -0
  143. package/dist/utils/yarn-pnp.js.map +1 -0
  144. package/package.json +5 -2
  145. package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
@@ -1,157 +1,157 @@
1
- "use client";
2
-
3
- import React from "react";
4
- import {
5
- PortfolioSimple,
6
- PortfolioProject,
7
- } from "@/components/sections/PortfolioSimple";
8
-
9
- // Default portfolio data without images - Digital Marketing Agency focused
10
- const defaultProjects: PortfolioProject[] = [
11
- {
12
- id: 1,
13
- title: "TechStartup Growth Campaign",
14
- category: "Digital Marketing",
15
- industry: "Technology",
16
- result: "+300% Leads",
17
- description:
18
- "Comprehensive digital marketing campaign that increased qualified leads by 300% through targeted SEO, social media marketing, and conversion optimization strategies.",
19
- tags: ["SEO", "Social Media", "PPC", "Analytics"],
20
- color: "blue",
21
- url: "#",
22
- },
23
- {
24
- id: 2,
25
- title: "E-Commerce Brand Launch",
26
- category: "Brand Marketing",
27
- industry: "Retail",
28
- result: "+250% Revenue",
29
- description:
30
- "Complete brand launch and digital marketing strategy for a new e-commerce platform, resulting in 250% revenue growth within the first 6 months.",
31
- tags: ["Brand Strategy", "Content Marketing", "Influencer", "Email"],
32
- color: "green",
33
- url: "#",
34
- },
35
- {
36
- id: 3,
37
- title: "Healthcare Practice Expansion",
38
- category: "Local Marketing",
39
- industry: "Healthcare",
40
- result: "+180% Patients",
41
- description:
42
- "Local SEO and digital marketing campaign that helped a healthcare practice expand to three new locations and increase patient acquisition by 180%.",
43
- tags: ["Local SEO", "Google Ads", "Reputation", "Content"],
44
- color: "purple",
45
- url: "#",
46
- },
47
- {
48
- id: 4,
49
- title: "SaaS Product Launch",
50
- category: "B2B Marketing",
51
- industry: "Software",
52
- result: "+400% Signups",
53
- description:
54
- "Strategic B2B marketing campaign for a SaaS product launch, achieving 400% increase in trial signups through targeted content marketing and account-based marketing.",
55
- tags: ["B2B Strategy", "Content", "LinkedIn Ads", "Webinars"],
56
- color: "indigo",
57
- url: "#",
58
- },
59
- {
60
- id: 5,
61
- title: "Restaurant Chain Rebrand",
62
- category: "Brand Marketing",
63
- industry: "Food & Beverage",
64
- result: "+220% Foot Traffic",
65
- description:
66
- "Complete rebrand and digital marketing transformation for a restaurant chain, resulting in 220% increase in foot traffic and 150% growth in online orders.",
67
- tags: ["Rebranding", "Social Media", "Local SEO", "Delivery"],
68
- color: "red",
69
- url: "#",
70
- },
71
- {
72
- id: 6,
73
- title: "Fitness App User Acquisition",
74
- category: "Mobile Marketing",
75
- industry: "Health & Fitness",
76
- result: "+500% Downloads",
77
- description:
78
- "Mobile-first marketing campaign that achieved 500% increase in app downloads through app store optimization, influencer partnerships, and targeted social media advertising.",
79
- tags: ["ASO", "Influencer", "Social Ads", "Retention"],
80
- color: "yellow",
81
- url: "#",
82
- },
83
- ];
84
-
85
- const defaultFilters = [
86
- "All Projects",
87
- "Digital Marketing",
88
- "Brand Marketing",
89
- "B2B Marketing",
90
- "Local Marketing",
91
- "Mobile Marketing",
92
- ];
93
-
94
- // Upgraded Portfolio Preset Component
95
- export function Portfolio() {
96
- return (
97
- <section id="portfolio">
98
- <PortfolioSimple
99
- enableMotion={true}
100
- projects={defaultProjects}
101
- filters={defaultFilters}
102
- sectionTitle="Our Portfolio"
103
- sectionSubtitle="Discover our successful projects that have transformed businesses across various industries with innovative digital solutions."
104
- ctaTitle="Ready to Start Your Project?"
105
- ctaDescription="Let's work together to create something amazing that drives real results for your business."
106
- section={{
107
- className: "py-16 md:py-24 bg-background",
108
- }}
109
- title={{
110
- className:
111
- "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-[var(--heading-fg)]",
112
- }}
113
- subtitle={{
114
- className:
115
- "text-xl md:text-2xl font-inter text-[var(--subheading-fg)] max-w-2xl mx-auto leading-relaxed",
116
- }}
117
- ctaTitleStyle={{
118
- className: "text-2xl md:text-3xl font-bold text-[var(--heading-fg)]",
119
- }}
120
- ctaDescriptionStyle={{
121
- className:
122
- "text-lg md:text-xl text-[var(--subheading-fg)] max-w-md mx-auto",
123
- }}
124
- tagStyle={{
125
- className:
126
- "px-2 py-1 text-xs rounded-full border-[var(--badge-border)] text-[var(--badge-fg)] bg-[var(--badge-bg)]",
127
- }}
128
- ctaSection={{
129
- className:
130
- "space-y-6 text-center mt-16 pt-12 border-t border-[var(--footer-border)]",
131
- }}
132
- cta1Label="Start Your Project"
133
- cta1Href="#contact"
134
- cta2Label="View All Projects"
135
- cta2Href="#portfolio"
136
- cta1Button={{
137
- className:
138
- "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 [--btn-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.700)] [--btn-fg:theme(colors.white)] hover:[--btn-hover-fg:theme(colors.white)]",
139
- }}
140
- cta2Button={{
141
- className:
142
- "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 border-2 [--btn-bg:transparent] [--btn-fg:theme(colors.fuchsia.700)] [--btn-border:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-fg:theme(colors.white)] dark:[--btn-fg:theme(colors.fuchsia.400)] dark:[--btn-border:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-bg:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-fg:theme(colors.white)]",
143
- }}
144
- onProjectClick={(project) => {
145
- console.log("Project clicked:", project);
146
- }}
147
- onPrimaryCtaClick={() => {
148
- console.log("CTA 1 clicked:");
149
- }}
150
- onSecondaryCtaClick={() => {
151
- console.log("CTA 2 clicked:");
152
- }}
153
- ariaLabel="Portfolio showcase section"
154
- />
155
- </section>
156
- );
157
- }
1
+ "use client";
2
+
3
+ import React from "react";
4
+ import {
5
+ PortfolioSimple,
6
+ PortfolioProject,
7
+ } from "@/components/sections/PortfolioSimple";
8
+
9
+ // Default portfolio data without images - Digital Marketing Agency focused
10
+ const defaultProjects: PortfolioProject[] = [
11
+ {
12
+ id: 1,
13
+ title: "TechStartup Growth Campaign",
14
+ category: "Digital Marketing",
15
+ industry: "Technology",
16
+ result: "+300% Leads",
17
+ description:
18
+ "Comprehensive digital marketing campaign that increased qualified leads by 300% through targeted SEO, social media marketing, and conversion optimization strategies.",
19
+ tags: ["SEO", "Social Media", "PPC", "Analytics"],
20
+ color: "blue",
21
+ url: "#",
22
+ },
23
+ {
24
+ id: 2,
25
+ title: "E-Commerce Brand Launch",
26
+ category: "Brand Marketing",
27
+ industry: "Retail",
28
+ result: "+250% Revenue",
29
+ description:
30
+ "Complete brand launch and digital marketing strategy for a new e-commerce platform, resulting in 250% revenue growth within the first 6 months.",
31
+ tags: ["Brand Strategy", "Content Marketing", "Influencer", "Email"],
32
+ color: "green",
33
+ url: "#",
34
+ },
35
+ {
36
+ id: 3,
37
+ title: "Healthcare Practice Expansion",
38
+ category: "Local Marketing",
39
+ industry: "Healthcare",
40
+ result: "+180% Patients",
41
+ description:
42
+ "Local SEO and digital marketing campaign that helped a healthcare practice expand to three new locations and increase patient acquisition by 180%.",
43
+ tags: ["Local SEO", "Google Ads", "Reputation", "Content"],
44
+ color: "purple",
45
+ url: "#",
46
+ },
47
+ {
48
+ id: 4,
49
+ title: "SaaS Product Launch",
50
+ category: "B2B Marketing",
51
+ industry: "Software",
52
+ result: "+400% Signups",
53
+ description:
54
+ "Strategic B2B marketing campaign for a SaaS product launch, achieving 400% increase in trial signups through targeted content marketing and account-based marketing.",
55
+ tags: ["B2B Strategy", "Content", "LinkedIn Ads", "Webinars"],
56
+ color: "indigo",
57
+ url: "#",
58
+ },
59
+ {
60
+ id: 5,
61
+ title: "Restaurant Chain Rebrand",
62
+ category: "Brand Marketing",
63
+ industry: "Food & Beverage",
64
+ result: "+220% Foot Traffic",
65
+ description:
66
+ "Complete rebrand and digital marketing transformation for a restaurant chain, resulting in 220% increase in foot traffic and 150% growth in online orders.",
67
+ tags: ["Rebranding", "Social Media", "Local SEO", "Delivery"],
68
+ color: "red",
69
+ url: "#",
70
+ },
71
+ {
72
+ id: 6,
73
+ title: "Fitness App User Acquisition",
74
+ category: "Mobile Marketing",
75
+ industry: "Health & Fitness",
76
+ result: "+500% Downloads",
77
+ description:
78
+ "Mobile-first marketing campaign that achieved 500% increase in app downloads through app store optimization, influencer partnerships, and targeted social media advertising.",
79
+ tags: ["ASO", "Influencer", "Social Ads", "Retention"],
80
+ color: "yellow",
81
+ url: "#",
82
+ },
83
+ ];
84
+
85
+ const defaultFilters = [
86
+ "All Projects",
87
+ "Digital Marketing",
88
+ "Brand Marketing",
89
+ "B2B Marketing",
90
+ "Local Marketing",
91
+ "Mobile Marketing",
92
+ ];
93
+
94
+ // Portfolio Preset Component
95
+ export function Portfolio() {
96
+ return (
97
+ <section id="portfolio">
98
+ <PortfolioSimple
99
+ enableMotion={true}
100
+ projects={defaultProjects}
101
+ filters={defaultFilters}
102
+ sectionTitle="Our Portfolio"
103
+ sectionSubtitle="Discover our successful projects that have transformed businesses across various industries with innovative digital solutions."
104
+ ctaTitle="Ready to Start Your Project?"
105
+ ctaDescription="Let's work together to create something amazing that drives real results for your business."
106
+ section={{
107
+ className: "py-16 md:py-24 bg-background",
108
+ }}
109
+ title={{
110
+ className:
111
+ "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-[var(--heading-fg)]",
112
+ }}
113
+ subtitle={{
114
+ className:
115
+ "text-xl md:text-2xl font-inter text-[var(--subheading-fg)] max-w-2xl mx-auto leading-relaxed",
116
+ }}
117
+ ctaTitleStyle={{
118
+ className: "text-2xl md:text-3xl font-bold text-[var(--heading-fg)]",
119
+ }}
120
+ ctaDescriptionStyle={{
121
+ className:
122
+ "text-lg md:text-xl text-[var(--subheading-fg)] max-w-md mx-auto",
123
+ }}
124
+ tagStyle={{
125
+ className:
126
+ "px-2 py-1 text-xs rounded-full border-[var(--badge-border)] text-[var(--badge-fg)] bg-[var(--badge-bg)]",
127
+ }}
128
+ ctaSection={{
129
+ className:
130
+ "space-y-6 text-center mt-16 pt-12 border-t border-[var(--footer-border)]",
131
+ }}
132
+ cta1Label="Start Your Project"
133
+ cta1Href="#contact"
134
+ cta2Label="View All Projects"
135
+ cta2Href="#portfolio"
136
+ cta1Button={{
137
+ className:
138
+ "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 [--btn-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.700)] [--btn-fg:theme(colors.white)] hover:[--btn-hover-fg:theme(colors.white)]",
139
+ }}
140
+ cta2Button={{
141
+ className:
142
+ "h-10 px-6 flex items-center justify-center font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5 border-2 [--btn-bg:transparent] [--btn-fg:theme(colors.fuchsia.700)] [--btn-border:theme(colors.fuchsia.600)] hover:[--btn-hover-bg:theme(colors.fuchsia.600)] hover:[--btn-hover-fg:theme(colors.white)] dark:[--btn-fg:theme(colors.fuchsia.400)] dark:[--btn-border:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-bg:theme(colors.fuchsia.500)] dark:hover:[--btn-hover-fg:theme(colors.white)]",
143
+ }}
144
+ onProjectClick={(project) => {
145
+ console.log("Project clicked:", project);
146
+ }}
147
+ onPrimaryCtaClick={() => {
148
+ console.log("CTA 1 clicked:");
149
+ }}
150
+ onSecondaryCtaClick={() => {
151
+ console.log("CTA 2 clicked:");
152
+ }}
153
+ ariaLabel="Portfolio showcase section"
154
+ />
155
+ </section>
156
+ );
157
+ }
@@ -1,114 +1,114 @@
1
- "use client";
2
-
3
- import React from "react";
4
- import { Pricing as SharedPricing } from "@/components/sections/Pricing";
5
-
6
- const AgencyPricingData = [
7
- {
8
- pricingPlanHeaderText: "Starter",
9
- pricingPlanPrice: "$2,999",
10
- pricingPlanFeatures: [
11
- "5-page custom website",
12
- "Mobile-responsive design",
13
- "Basic SEO optimization",
14
- "Contact form integration",
15
- "2 rounds of revisions",
16
- "1 month post-launch support",
17
- ],
18
- pricingPlanCTALabel: "Get Started",
19
- pricingPlanCTAHref: "#contact",
20
- },
21
- {
22
- pricingPlanHeaderText: "Professional",
23
- pricingPlanPrice: "$5,999",
24
- pricingPlanFeatures: [
25
- "10-page custom website",
26
- "Advanced responsive design",
27
- "Comprehensive SEO setup",
28
- "CMS integration",
29
- "Analytics & tracking setup",
30
- "Social media integration",
31
- "3 rounds of revisions",
32
- "3 months ongoing support",
33
- ],
34
- pricingPlanCTALabel: "Most Popular",
35
- pricingPlanCTAHref: "#contact",
36
- isPopular: true,
37
- },
38
- {
39
- pricingPlanHeaderText: "Enterprise",
40
- pricingPlanPrice: "Custom Quote",
41
- pricingPlanFeatures: [
42
- "Unlimited pages",
43
- "Custom functionality",
44
- "E-commerce integration",
45
- "Advanced SEO strategy",
46
- "Performance optimization",
47
- "Third-party integrations",
48
- "Priority support",
49
- "Dedicated project manager",
50
- "6 months ongoing support",
51
- ],
52
- pricingPlanCTALabel: "Contact Sales",
53
- pricingPlanCTAHref: "#contact",
54
- },
55
- ];
56
-
57
- export function Pricing() {
58
- return (
59
- <section id="pricing">
60
- <SharedPricing
61
- pricingPlans={AgencyPricingData}
62
- pricingHeadingText="Choose Your Plan"
63
- section={{
64
- className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-800",
65
- }}
66
- container={{
67
- className: "max-w-7xl mx-auto px-6",
68
- }}
69
- heading={{
70
- className:
71
- "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-center text-gray-800 dark:text-white mb-8",
72
- }}
73
- grid={{
74
- className:
75
- "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-8",
76
- }}
77
- card={{
78
- className:
79
- "relative bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200",
80
- }}
81
- header={{
82
- className:
83
- "p-6 text-center border-b border-gray-200 dark:border-gray-700",
84
- }}
85
- title={{
86
- className:
87
- "text-xl font-bold font-poppins text-gray-800 dark:text-white mb-2",
88
- }}
89
- price={{
90
- className:
91
- "text-3xl font-bold font-poppins text-fuchsia-600 dark:text-fuchsia-400 mb-4",
92
- }}
93
- features={{
94
- className: "p-6 space-y-3 font-inter",
95
- }}
96
- featureItem={{
97
- className:
98
- "flex items-center text-gray-600 dark:text-gray-300 text-sm",
99
- }}
100
- cta={{
101
- variant: "default",
102
- size: "lg",
103
- className:
104
- "w-full bg-fuchsia-600 hover:bg-fuchsia-700 dark:bg-fuchsia-600 dark:hover:bg-fuchsia-700 text-white hover:text-white font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5",
105
- }}
106
- popularBadge={{
107
- className:
108
- "absolute -top-3 left-1/2 transform -translate-x-1/2 bg-fuchsia-600 text-white px-4 py-1 rounded-full text-sm font-medium",
109
- }}
110
- ariaLabel="Pricing section"
111
- />
112
- </section>
113
- );
114
- }
1
+ "use client";
2
+
3
+ import React from "react";
4
+ import { Pricing as SharedPricing } from "@/components/sections/Pricing";
5
+
6
+ const AgencyPricingData = [
7
+ {
8
+ pricingPlanHeaderText: "Starter",
9
+ pricingPlanPrice: "$2,999",
10
+ pricingPlanFeatures: [
11
+ "5-page custom website",
12
+ "Mobile-responsive design",
13
+ "Basic SEO optimization",
14
+ "Contact form integration",
15
+ "2 rounds of revisions",
16
+ "1 month post-launch support",
17
+ ],
18
+ pricingPlanCTALabel: "Get Started",
19
+ pricingPlanCTAHref: "#contact",
20
+ },
21
+ {
22
+ pricingPlanHeaderText: "Professional",
23
+ pricingPlanPrice: "$5,999",
24
+ pricingPlanFeatures: [
25
+ "10-page custom website",
26
+ "Advanced responsive design",
27
+ "Comprehensive SEO setup",
28
+ "CMS integration",
29
+ "Analytics & tracking setup",
30
+ "Social media integration",
31
+ "3 rounds of revisions",
32
+ "3 months ongoing support",
33
+ ],
34
+ pricingPlanCTALabel: "Most Popular",
35
+ pricingPlanCTAHref: "#contact",
36
+ isPopular: true,
37
+ },
38
+ {
39
+ pricingPlanHeaderText: "Enterprise",
40
+ pricingPlanPrice: "Custom Quote",
41
+ pricingPlanFeatures: [
42
+ "Unlimited pages",
43
+ "Custom functionality",
44
+ "E-commerce integration",
45
+ "Advanced SEO strategy",
46
+ "Performance optimization",
47
+ "Third-party integrations",
48
+ "Priority support",
49
+ "Dedicated project manager",
50
+ "6 months ongoing support",
51
+ ],
52
+ pricingPlanCTALabel: "Contact Sales",
53
+ pricingPlanCTAHref: "#contact",
54
+ },
55
+ ];
56
+
57
+ export function Pricing() {
58
+ return (
59
+ <section id="pricing">
60
+ <SharedPricing
61
+ pricingPlans={AgencyPricingData}
62
+ pricingHeadingText="Choose Your Plan"
63
+ section={{
64
+ className: "py-16 md:py-20 lg:py-24 bg-fuchsia-50 dark:bg-gray-800",
65
+ }}
66
+ container={{
67
+ className: "max-w-7xl mx-auto px-6",
68
+ }}
69
+ heading={{
70
+ className:
71
+ "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-center text-gray-800 dark:text-white mb-8",
72
+ }}
73
+ grid={{
74
+ className:
75
+ "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-8",
76
+ }}
77
+ card={{
78
+ className:
79
+ "relative bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-200",
80
+ }}
81
+ header={{
82
+ className:
83
+ "p-6 text-center border-b border-gray-200 dark:border-gray-700",
84
+ }}
85
+ title={{
86
+ className:
87
+ "text-xl font-bold font-poppins text-gray-800 dark:text-white mb-2",
88
+ }}
89
+ price={{
90
+ className:
91
+ "text-3xl font-bold font-poppins text-fuchsia-600 dark:text-fuchsia-400 mb-4",
92
+ }}
93
+ features={{
94
+ className: "p-6 space-y-3 font-inter",
95
+ }}
96
+ featureItem={{
97
+ className:
98
+ "flex items-center text-gray-600 dark:text-gray-300 text-sm",
99
+ }}
100
+ cta={{
101
+ variant: "default",
102
+ size: "lg",
103
+ className:
104
+ "w-full bg-fuchsia-600 hover:bg-fuchsia-700 dark:bg-fuchsia-600 dark:hover:bg-fuchsia-700 text-white hover:text-white font-medium shadow-md hover:shadow-lg transition-all duration-200 hover:-translate-y-0.5",
105
+ }}
106
+ popularBadge={{
107
+ className:
108
+ "absolute -top-3 left-1/2 transform -translate-x-1/2 bg-fuchsia-600 text-white px-4 py-1 rounded-full text-sm font-medium",
109
+ }}
110
+ ariaLabel="Pricing section"
111
+ />
112
+ </section>
113
+ );
114
+ }
@@ -1,59 +1,59 @@
1
- "use client";
2
-
3
- import React from "react";
4
- import { ProcessTimeline } from "@/components/sections/ProcessTimeline";
5
-
6
- const agencySteps = [
7
- {
8
- stepNumber: 1,
9
- title: "Discovery Call",
10
- description: "Understanding your goals and requirements",
11
- icon: "🔍",
12
- },
13
- {
14
- stepNumber: 2,
15
- title: "Strategy & Design",
16
- description: "Custom mockups and project roadmap",
17
- icon: "🎨",
18
- },
19
- {
20
- stepNumber: 3,
21
- title: "Development",
22
- description: "Building your site with regular updates",
23
- icon: "⚡",
24
- },
25
- {
26
- stepNumber: 4,
27
- title: "Launch & Support",
28
- description: "Going live with ongoing maintenance",
29
- icon: "🚀",
30
- },
31
- ];
32
-
33
- export function Process() {
34
- return (
35
- <section id="process">
36
- <ProcessTimeline
37
- steps={agencySteps}
38
- heading="How We Work"
39
- subheading="Our proven 4-step process ensures your project delivers real results, on time and within budget."
40
- section={{
41
- className:
42
- "py-16 md:py-20 bg-fuchsia-50 dark:bg-gray-900 [--process-step-bg:theme(colors.fuchsia.600)] [--process-step-fg:theme(colors.white)] [--process-connector:theme(colors.gray.300)] dark:[--process-connector:theme(colors.gray.600)]",
43
- }}
44
- container={{ className: "max-w-6xl mx-auto px-6" }}
45
- headingStyle={{
46
- className:
47
- "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white leading-tight",
48
- }}
49
- subheadingStyle={{
50
- className:
51
- "text-xl md:text-2xl font-inter text-gray-600 dark:text-gray-300 max-w-2xl mx-auto leading-relaxed",
52
- }}
53
- connectingLine={undefined}
54
- stepCircle={undefined}
55
- ariaLabel="Process timeline section"
56
- />
57
- </section>
58
- );
59
- }
1
+ "use client";
2
+
3
+ import React from "react";
4
+ import { ProcessTimeline } from "@/components/sections/ProcessTimeline";
5
+
6
+ const agencySteps = [
7
+ {
8
+ stepNumber: 1,
9
+ title: "Discovery Call",
10
+ description: "Understanding your goals and requirements",
11
+ icon: "🔍",
12
+ },
13
+ {
14
+ stepNumber: 2,
15
+ title: "Strategy & Design",
16
+ description: "Custom mockups and project roadmap",
17
+ icon: "🎨",
18
+ },
19
+ {
20
+ stepNumber: 3,
21
+ title: "Development",
22
+ description: "Building your site with regular updates",
23
+ icon: "⚡",
24
+ },
25
+ {
26
+ stepNumber: 4,
27
+ title: "Launch & Support",
28
+ description: "Going live with ongoing maintenance",
29
+ icon: "🚀",
30
+ },
31
+ ];
32
+
33
+ export function Process() {
34
+ return (
35
+ <section id="process">
36
+ <ProcessTimeline
37
+ steps={agencySteps}
38
+ heading="How We Work"
39
+ subheading="Our proven 4-step process ensures your project delivers real results, on time and within budget."
40
+ section={{
41
+ className:
42
+ "py-16 md:py-20 bg-fuchsia-50 dark:bg-gray-900 [--process-step-bg:theme(colors.fuchsia.600)] [--process-step-fg:theme(colors.white)] [--process-connector:theme(colors.gray.300)] dark:[--process-connector:theme(colors.gray.600)]",
43
+ }}
44
+ container={{ className: "max-w-6xl mx-auto px-6" }}
45
+ headingStyle={{
46
+ className:
47
+ "text-4xl md:text-5xl lg:text-6xl font-bold font-poppins text-gray-800 dark:text-white leading-tight",
48
+ }}
49
+ subheadingStyle={{
50
+ className:
51
+ "text-xl md:text-2xl font-inter text-gray-600 dark:text-gray-300 max-w-2xl mx-auto leading-relaxed",
52
+ }}
53
+ connectingLine={undefined}
54
+ stepCircle={undefined}
55
+ ariaLabel="Process timeline section"
56
+ />
57
+ </section>
58
+ );
59
+ }