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.
- package/README.md +280 -228
- package/dist/cli_manifests/blocks_manifest.json +193 -194
- package/dist/commands/blocks.d.ts +3 -0
- package/dist/commands/blocks.d.ts.map +1 -1
- package/dist/commands/blocks.js +128 -19
- package/dist/commands/blocks.js.map +1 -1
- package/dist/commands/doctor.d.ts +136 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +696 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/remove-blocks.d.ts +4 -1
- package/dist/commands/remove-blocks.d.ts.map +1 -1
- package/dist/commands/remove-blocks.js +24 -6
- package/dist/commands/remove-blocks.js.map +1 -1
- package/dist/index.js +125 -4
- package/dist/index.js.map +1 -1
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
- package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
- package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
- package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
- package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
- package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
- package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
- package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
- package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
- package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
- package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
- package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
- package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
- package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
- package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
- package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
- package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
- package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
- package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
- package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
- package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
- package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
- package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
- package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
- package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
- package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
- package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
- package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
- package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
- package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
- package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
- package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
- package/dist/kits/blocks/components/sections/About.tsx +291 -291
- package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
- package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
- package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
- package/dist/kits/blocks/components/sections/Features.tsx +268 -270
- package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
- package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
- package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
- package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
- package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
- package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
- package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
- package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
- package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
- package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
- package/dist/kits/blocks/components/sections/Team.tsx +309 -309
- package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
- package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
- package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
- package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -34
- package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
- package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
- package/dist/kits/blocks/components/ui/button.tsx +122 -122
- package/dist/kits/blocks/components/ui/card.tsx +95 -95
- package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
- package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
- package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
- package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
- package/dist/kits/blocks/components/ui/input.tsx +27 -27
- package/dist/kits/blocks/components/ui/label.tsx +29 -29
- package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
- package/dist/kits/blocks/components/ui/select.tsx +25 -25
- package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
- package/dist/kits/blocks/components/ui/table.tsx +98 -98
- package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
- package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
- package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
- package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
- package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
- package/dist/kits/blocks/lib/themes.ts +400 -400
- package/dist/kits/blocks/lib/utils.ts +6 -9
- package/dist/kits/blocks/package-deps.json +40 -28
- package/dist/kits/blocks/tsconfig.json +11 -0
- package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/file-operations.d.ts +3 -1
- package/dist/utils/file-operations.d.ts.map +1 -1
- package/dist/utils/file-operations.js +84 -12
- package/dist/utils/file-operations.js.map +1 -1
- package/dist/utils/installation-tracker.d.ts +2 -2
- package/dist/utils/installation-tracker.d.ts.map +1 -1
- package/dist/utils/installation-tracker.js +11 -11
- package/dist/utils/installation-tracker.js.map +1 -1
- package/dist/utils/package-manager.d.ts +6 -0
- package/dist/utils/package-manager.d.ts.map +1 -0
- package/dist/utils/package-manager.js +58 -0
- package/dist/utils/package-manager.js.map +1 -0
- package/dist/utils/yarn-pnp.d.ts +6 -0
- package/dist/utils/yarn-pnp.d.ts.map +1 -0
- package/dist/utils/yarn-pnp.js +39 -0
- package/dist/utils/yarn-pnp.js.map +1 -0
- package/package.json +5 -2
- package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Pricing as SharedPricing } from "@/components/sections/Pricing";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for Pricing
|
|
7
|
-
*/
|
|
8
|
-
export function Pricing() {
|
|
9
|
-
return (
|
|
10
|
-
<SharedPricing
|
|
11
|
-
id="pricing"
|
|
12
|
-
pricingHeadingText="Choose Your AI Plan"
|
|
13
|
-
pricingPlans={[
|
|
14
|
-
{
|
|
15
|
-
pricingPlanHeaderText: "Starter",
|
|
16
|
-
pricingPlanPrice: "$29",
|
|
17
|
-
pricingPlanFeatures: [
|
|
18
|
-
"Up to 1,000 AI requests/month",
|
|
19
|
-
"Basic AI models access",
|
|
20
|
-
"Email support",
|
|
21
|
-
"Standard analytics",
|
|
22
|
-
"API access",
|
|
23
|
-
],
|
|
24
|
-
pricingPlanCTALabel: "Get Started",
|
|
25
|
-
pricingPlanCTAHref: "#contact",
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
pricingPlanHeaderText: "Professional",
|
|
29
|
-
pricingPlanPrice: "$99",
|
|
30
|
-
pricingPlanFeatures: [
|
|
31
|
-
"Up to 10,000 AI requests/month",
|
|
32
|
-
"Advanced AI models access",
|
|
33
|
-
"Priority support",
|
|
34
|
-
"Advanced analytics & insights",
|
|
35
|
-
"Full API access",
|
|
36
|
-
"Custom integrations",
|
|
37
|
-
"Team collaboration tools",
|
|
38
|
-
],
|
|
39
|
-
pricingPlanCTALabel: "Start Free Trial",
|
|
40
|
-
pricingPlanCTAHref: "#contact",
|
|
41
|
-
isPopular: true,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
pricingPlanHeaderText: "Enterprise",
|
|
45
|
-
pricingPlanPrice: "Custom",
|
|
46
|
-
pricingPlanFeatures: [
|
|
47
|
-
"Unlimited AI requests",
|
|
48
|
-
"Premium AI models access",
|
|
49
|
-
"24/7 dedicated support",
|
|
50
|
-
"Custom analytics dashboard",
|
|
51
|
-
"White-label solutions",
|
|
52
|
-
"Custom model training",
|
|
53
|
-
"SLA guarantee",
|
|
54
|
-
"On-premise deployment",
|
|
55
|
-
],
|
|
56
|
-
pricingPlanCTALabel: "Contact Sales",
|
|
57
|
-
pricingPlanCTAHref: "#contact",
|
|
58
|
-
},
|
|
59
|
-
]}
|
|
60
|
-
section={{
|
|
61
|
-
className:
|
|
62
|
-
"pt-20 pb-16 bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-white",
|
|
63
|
-
}}
|
|
64
|
-
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
65
|
-
heading={{
|
|
66
|
-
className:
|
|
67
|
-
"text-3xl md:text-4xl lg:text-5xl font-bold text-center text-gray-800 dark:text-white mb-4 font-outfit",
|
|
68
|
-
}}
|
|
69
|
-
grid={{
|
|
70
|
-
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-12",
|
|
71
|
-
}}
|
|
72
|
-
card={{
|
|
73
|
-
className:
|
|
74
|
-
"relative bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-2xl shadow-lg hover:shadow-2xl hover:shadow-purple-500/20 transition-all duration-300 hover:-translate-y-2 hover:border-purple-300 dark:hover:border-purple-600",
|
|
75
|
-
}}
|
|
76
|
-
header={{
|
|
77
|
-
className:
|
|
78
|
-
"p-8 text-center border-b border-gray-200 dark:border-gray-700",
|
|
79
|
-
}}
|
|
80
|
-
title={{
|
|
81
|
-
className:
|
|
82
|
-
"text-xl md:text-2xl font-bold text-gray-800 dark:text-white mb-3 font-outfit",
|
|
83
|
-
}}
|
|
84
|
-
price={{
|
|
85
|
-
className:
|
|
86
|
-
"text-3xl md:text-4xl font-bold text-purple-600 dark:text-purple-400 mb-6 font-outfit",
|
|
87
|
-
}}
|
|
88
|
-
features={{ className: "p-8 space-y-4" }}
|
|
89
|
-
featureItem={{
|
|
90
|
-
className:
|
|
91
|
-
"flex items-center text-gray-600 dark:text-gray-300 text-sm md:text-base font-inter",
|
|
92
|
-
}}
|
|
93
|
-
cta={{
|
|
94
|
-
variant: "default",
|
|
95
|
-
size: "lg",
|
|
96
|
-
className:
|
|
97
|
-
"w-full font-semibold text-base shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5 border-0 [--btn-bg:theme(colors.purple.600)] hover:[--btn-hover-bg:theme(colors.purple.700)] [--btn-fg:white] hover:[--btn-hover-fg:white] [--btn-border:transparent]",
|
|
98
|
-
}}
|
|
99
|
-
popularBadge={{
|
|
100
|
-
className:
|
|
101
|
-
"absolute -top-4 left-1/2 transform -translate-x-1/2 bg-purple-600 text-white px-6 py-2 rounded-full text-sm font-medium font-inter shadow-lg",
|
|
102
|
-
}}
|
|
103
|
-
ariaLabel="IntelliOpAI pricing plans"
|
|
104
|
-
/>
|
|
105
|
-
);
|
|
106
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { Pricing as SharedPricing } from "@/components/sections/Pricing";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for Pricing
|
|
7
|
+
*/
|
|
8
|
+
export function Pricing() {
|
|
9
|
+
return (
|
|
10
|
+
<SharedPricing
|
|
11
|
+
id="pricing"
|
|
12
|
+
pricingHeadingText="Choose Your AI Plan"
|
|
13
|
+
pricingPlans={[
|
|
14
|
+
{
|
|
15
|
+
pricingPlanHeaderText: "Starter",
|
|
16
|
+
pricingPlanPrice: "$29",
|
|
17
|
+
pricingPlanFeatures: [
|
|
18
|
+
"Up to 1,000 AI requests/month",
|
|
19
|
+
"Basic AI models access",
|
|
20
|
+
"Email support",
|
|
21
|
+
"Standard analytics",
|
|
22
|
+
"API access",
|
|
23
|
+
],
|
|
24
|
+
pricingPlanCTALabel: "Get Started",
|
|
25
|
+
pricingPlanCTAHref: "#contact",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
pricingPlanHeaderText: "Professional",
|
|
29
|
+
pricingPlanPrice: "$99",
|
|
30
|
+
pricingPlanFeatures: [
|
|
31
|
+
"Up to 10,000 AI requests/month",
|
|
32
|
+
"Advanced AI models access",
|
|
33
|
+
"Priority support",
|
|
34
|
+
"Advanced analytics & insights",
|
|
35
|
+
"Full API access",
|
|
36
|
+
"Custom integrations",
|
|
37
|
+
"Team collaboration tools",
|
|
38
|
+
],
|
|
39
|
+
pricingPlanCTALabel: "Start Free Trial",
|
|
40
|
+
pricingPlanCTAHref: "#contact",
|
|
41
|
+
isPopular: true,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
pricingPlanHeaderText: "Enterprise",
|
|
45
|
+
pricingPlanPrice: "Custom",
|
|
46
|
+
pricingPlanFeatures: [
|
|
47
|
+
"Unlimited AI requests",
|
|
48
|
+
"Premium AI models access",
|
|
49
|
+
"24/7 dedicated support",
|
|
50
|
+
"Custom analytics dashboard",
|
|
51
|
+
"White-label solutions",
|
|
52
|
+
"Custom model training",
|
|
53
|
+
"SLA guarantee",
|
|
54
|
+
"On-premise deployment",
|
|
55
|
+
],
|
|
56
|
+
pricingPlanCTALabel: "Contact Sales",
|
|
57
|
+
pricingPlanCTAHref: "#contact",
|
|
58
|
+
},
|
|
59
|
+
]}
|
|
60
|
+
section={{
|
|
61
|
+
className:
|
|
62
|
+
"pt-20 pb-16 bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-white",
|
|
63
|
+
}}
|
|
64
|
+
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
65
|
+
heading={{
|
|
66
|
+
className:
|
|
67
|
+
"text-3xl md:text-4xl lg:text-5xl font-bold text-center text-gray-800 dark:text-white mb-4 font-outfit",
|
|
68
|
+
}}
|
|
69
|
+
grid={{
|
|
70
|
+
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-12",
|
|
71
|
+
}}
|
|
72
|
+
card={{
|
|
73
|
+
className:
|
|
74
|
+
"relative bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-2xl shadow-lg hover:shadow-2xl hover:shadow-purple-500/20 transition-all duration-300 hover:-translate-y-2 hover:border-purple-300 dark:hover:border-purple-600",
|
|
75
|
+
}}
|
|
76
|
+
header={{
|
|
77
|
+
className:
|
|
78
|
+
"p-8 text-center border-b border-gray-200 dark:border-gray-700",
|
|
79
|
+
}}
|
|
80
|
+
title={{
|
|
81
|
+
className:
|
|
82
|
+
"text-xl md:text-2xl font-bold text-gray-800 dark:text-white mb-3 font-outfit",
|
|
83
|
+
}}
|
|
84
|
+
price={{
|
|
85
|
+
className:
|
|
86
|
+
"text-3xl md:text-4xl font-bold text-purple-600 dark:text-purple-400 mb-6 font-outfit",
|
|
87
|
+
}}
|
|
88
|
+
features={{ className: "p-8 space-y-4" }}
|
|
89
|
+
featureItem={{
|
|
90
|
+
className:
|
|
91
|
+
"flex items-center text-gray-600 dark:text-gray-300 text-sm md:text-base font-inter",
|
|
92
|
+
}}
|
|
93
|
+
cta={{
|
|
94
|
+
variant: "default",
|
|
95
|
+
size: "lg",
|
|
96
|
+
className:
|
|
97
|
+
"w-full font-semibold text-base shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5 border-0 [--btn-bg:theme(colors.purple.600)] hover:[--btn-hover-bg:theme(colors.purple.700)] [--btn-fg:white] hover:[--btn-hover-fg:white] [--btn-border:transparent]",
|
|
98
|
+
}}
|
|
99
|
+
popularBadge={{
|
|
100
|
+
className:
|
|
101
|
+
"absolute -top-4 left-1/2 transform -translate-x-1/2 bg-purple-600 text-white px-6 py-2 rounded-full text-sm font-medium font-inter shadow-lg",
|
|
102
|
+
}}
|
|
103
|
+
ariaLabel="IntelliOpAI pricing plans"
|
|
104
|
+
/>
|
|
105
|
+
);
|
|
106
|
+
}
|
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { ProcessTimeline as SharedProcessTimeline } from "@/components/sections/ProcessTimeline";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for ProcessTimeline
|
|
7
|
-
*/
|
|
8
|
-
export function ProcessTimeline() {
|
|
9
|
-
const steps = [
|
|
10
|
-
{
|
|
11
|
-
stepNumber: 1,
|
|
12
|
-
title: "Instant AI Assessment",
|
|
13
|
-
description:
|
|
14
|
-
"Get your personalized AI readiness report in minutes. Our intelligent system analyzes your data and identifies breakthrough opportunities.",
|
|
15
|
-
icon: "🧠",
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
stepNumber: 2,
|
|
19
|
-
title: "Smart AI Configuration",
|
|
20
|
-
description:
|
|
21
|
-
"Our AI configures itself for your business. No coding required - just tell us your goals and watch the magic happen.",
|
|
22
|
-
icon: "⚙️",
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
stepNumber: 3,
|
|
26
|
-
title: "Real-time AI Training",
|
|
27
|
-
description:
|
|
28
|
-
"Watch your AI learn and improve in real-time. Our breakthrough algorithms adapt to your data patterns instantly.",
|
|
29
|
-
icon: "🎯",
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
stepNumber: 4,
|
|
33
|
-
title: "Launch & Scale",
|
|
34
|
-
description:
|
|
35
|
-
"Deploy your AI in minutes, not months. Continuous learning ensures your AI gets smarter every day.",
|
|
36
|
-
icon: "🚀",
|
|
37
|
-
},
|
|
38
|
-
];
|
|
39
|
-
|
|
40
|
-
return (
|
|
41
|
-
<SharedProcessTimeline
|
|
42
|
-
steps={steps}
|
|
43
|
-
heading="How AI Gets Done in Minutes"
|
|
44
|
-
subheading="Experience the future of AI deployment with our revolutionary 4-step process that transforms your business in real-time."
|
|
45
|
-
section={{ className: "py-20 md:py-24 bg-white dark:bg-black" }}
|
|
46
|
-
container={{ className: "max-w-6xl mx-auto px-6 md:px-12" }}
|
|
47
|
-
header={{ className: "space-y-6 mb-16 md:mb-20 text-center" }}
|
|
48
|
-
headingStyle={{
|
|
49
|
-
className:
|
|
50
|
-
"text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
51
|
-
}}
|
|
52
|
-
subheadingStyle={{
|
|
53
|
-
className:
|
|
54
|
-
"text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto leading-relaxed font-inter",
|
|
55
|
-
}}
|
|
56
|
-
timelineContainer={{ className: "w-full max-w-5xl mx-auto" }}
|
|
57
|
-
desktopTimeline={{
|
|
58
|
-
className: "hidden lg:flex justify-between items-start relative w-full",
|
|
59
|
-
}}
|
|
60
|
-
connectingLine={{
|
|
61
|
-
className:
|
|
62
|
-
"absolute top-8 left-15 right-15 h-1 bg-purple-300 dark:bg-purple-600 z-10",
|
|
63
|
-
}}
|
|
64
|
-
stepContainer={{
|
|
65
|
-
className:
|
|
66
|
-
"flex flex-col items-center space-y-6 flex-1 max-w-56 relative z-20",
|
|
67
|
-
}}
|
|
68
|
-
stepCircle={{
|
|
69
|
-
className:
|
|
70
|
-
"w-16 h-16 bg-gradient-to-br from-purple-600 to-purple-700 dark:from-purple-500 dark:to-purple-600 text-white font-bold text-2xl rounded-full flex items-center justify-center shadow-xl hover:shadow-2xl hover:shadow-purple-500/50 transition-all duration-300 hover:-translate-y-1 hover:scale-110 relative z-30",
|
|
71
|
-
}}
|
|
72
|
-
stepNumber={{ className: "text-white font-bold text-2xl font-outfit" }}
|
|
73
|
-
stepIcon={{ className: "text-3xl md:text-4xl mb-3" }}
|
|
74
|
-
stepContent={{ className: "space-y-3 text-center" }}
|
|
75
|
-
stepTitle={{
|
|
76
|
-
className:
|
|
77
|
-
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
78
|
-
}}
|
|
79
|
-
stepDescription={{
|
|
80
|
-
className:
|
|
81
|
-
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
|
|
82
|
-
}}
|
|
83
|
-
mobileTimeline={{
|
|
84
|
-
className: "flex lg:hidden flex-col space-y-10 w-full",
|
|
85
|
-
}}
|
|
86
|
-
mobileStep={{ className: "flex items-start relative" }}
|
|
87
|
-
mobileVerticalLine={{
|
|
88
|
-
className:
|
|
89
|
-
"absolute left-8 top-16 bottom-[-2.5rem] w-1 bg-purple-300 dark:bg-purple-600 z-10",
|
|
90
|
-
}}
|
|
91
|
-
mobileStepCircle={{
|
|
92
|
-
className:
|
|
93
|
-
"w-16 h-16 bg-purple-600 dark:bg-purple-500 text-white font-bold text-2xl rounded-full flex items-center justify-center shadow-xl hover:shadow-2xl transition-all duration-300 hover:-translate-y-1 flex-shrink-0 mr-8 z-20",
|
|
94
|
-
}}
|
|
95
|
-
mobileStepContent={{
|
|
96
|
-
className: "flex flex-col items-start space-y-4 flex-1 pt-2",
|
|
97
|
-
}}
|
|
98
|
-
mobileStepIcon={{ className: "text-3xl md:text-4xl" }}
|
|
99
|
-
mobileStepTitle={{
|
|
100
|
-
className:
|
|
101
|
-
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
102
|
-
}}
|
|
103
|
-
mobileStepDescription={{
|
|
104
|
-
className:
|
|
105
|
-
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
|
|
106
|
-
}}
|
|
107
|
-
ariaLabel="IntelliOpAI process timeline"
|
|
108
|
-
/>
|
|
109
|
-
);
|
|
110
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ProcessTimeline as SharedProcessTimeline } from "@/components/sections/ProcessTimeline";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for ProcessTimeline
|
|
7
|
+
*/
|
|
8
|
+
export function ProcessTimeline() {
|
|
9
|
+
const steps = [
|
|
10
|
+
{
|
|
11
|
+
stepNumber: 1,
|
|
12
|
+
title: "Instant AI Assessment",
|
|
13
|
+
description:
|
|
14
|
+
"Get your personalized AI readiness report in minutes. Our intelligent system analyzes your data and identifies breakthrough opportunities.",
|
|
15
|
+
icon: "🧠",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
stepNumber: 2,
|
|
19
|
+
title: "Smart AI Configuration",
|
|
20
|
+
description:
|
|
21
|
+
"Our AI configures itself for your business. No coding required - just tell us your goals and watch the magic happen.",
|
|
22
|
+
icon: "⚙️",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
stepNumber: 3,
|
|
26
|
+
title: "Real-time AI Training",
|
|
27
|
+
description:
|
|
28
|
+
"Watch your AI learn and improve in real-time. Our breakthrough algorithms adapt to your data patterns instantly.",
|
|
29
|
+
icon: "🎯",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
stepNumber: 4,
|
|
33
|
+
title: "Launch & Scale",
|
|
34
|
+
description:
|
|
35
|
+
"Deploy your AI in minutes, not months. Continuous learning ensures your AI gets smarter every day.",
|
|
36
|
+
icon: "🚀",
|
|
37
|
+
},
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
return (
|
|
41
|
+
<SharedProcessTimeline
|
|
42
|
+
steps={steps}
|
|
43
|
+
heading="How AI Gets Done in Minutes"
|
|
44
|
+
subheading="Experience the future of AI deployment with our revolutionary 4-step process that transforms your business in real-time."
|
|
45
|
+
section={{ className: "py-20 md:py-24 bg-white dark:bg-black" }}
|
|
46
|
+
container={{ className: "max-w-6xl mx-auto px-6 md:px-12" }}
|
|
47
|
+
header={{ className: "space-y-6 mb-16 md:mb-20 text-center" }}
|
|
48
|
+
headingStyle={{
|
|
49
|
+
className:
|
|
50
|
+
"text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
51
|
+
}}
|
|
52
|
+
subheadingStyle={{
|
|
53
|
+
className:
|
|
54
|
+
"text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto leading-relaxed font-inter",
|
|
55
|
+
}}
|
|
56
|
+
timelineContainer={{ className: "w-full max-w-5xl mx-auto" }}
|
|
57
|
+
desktopTimeline={{
|
|
58
|
+
className: "hidden lg:flex justify-between items-start relative w-full",
|
|
59
|
+
}}
|
|
60
|
+
connectingLine={{
|
|
61
|
+
className:
|
|
62
|
+
"absolute top-8 left-15 right-15 h-1 bg-purple-300 dark:bg-purple-600 z-10",
|
|
63
|
+
}}
|
|
64
|
+
stepContainer={{
|
|
65
|
+
className:
|
|
66
|
+
"flex flex-col items-center space-y-6 flex-1 max-w-56 relative z-20",
|
|
67
|
+
}}
|
|
68
|
+
stepCircle={{
|
|
69
|
+
className:
|
|
70
|
+
"w-16 h-16 bg-gradient-to-br from-purple-600 to-purple-700 dark:from-purple-500 dark:to-purple-600 text-white font-bold text-2xl rounded-full flex items-center justify-center shadow-xl hover:shadow-2xl hover:shadow-purple-500/50 transition-all duration-300 hover:-translate-y-1 hover:scale-110 relative z-30",
|
|
71
|
+
}}
|
|
72
|
+
stepNumber={{ className: "text-white font-bold text-2xl font-outfit" }}
|
|
73
|
+
stepIcon={{ className: "text-3xl md:text-4xl mb-3" }}
|
|
74
|
+
stepContent={{ className: "space-y-3 text-center" }}
|
|
75
|
+
stepTitle={{
|
|
76
|
+
className:
|
|
77
|
+
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
78
|
+
}}
|
|
79
|
+
stepDescription={{
|
|
80
|
+
className:
|
|
81
|
+
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
|
|
82
|
+
}}
|
|
83
|
+
mobileTimeline={{
|
|
84
|
+
className: "flex lg:hidden flex-col space-y-10 w-full",
|
|
85
|
+
}}
|
|
86
|
+
mobileStep={{ className: "flex items-start relative" }}
|
|
87
|
+
mobileVerticalLine={{
|
|
88
|
+
className:
|
|
89
|
+
"absolute left-8 top-16 bottom-[-2.5rem] w-1 bg-purple-300 dark:bg-purple-600 z-10",
|
|
90
|
+
}}
|
|
91
|
+
mobileStepCircle={{
|
|
92
|
+
className:
|
|
93
|
+
"w-16 h-16 bg-purple-600 dark:bg-purple-500 text-white font-bold text-2xl rounded-full flex items-center justify-center shadow-xl hover:shadow-2xl transition-all duration-300 hover:-translate-y-1 flex-shrink-0 mr-8 z-20",
|
|
94
|
+
}}
|
|
95
|
+
mobileStepContent={{
|
|
96
|
+
className: "flex flex-col items-start space-y-4 flex-1 pt-2",
|
|
97
|
+
}}
|
|
98
|
+
mobileStepIcon={{ className: "text-3xl md:text-4xl" }}
|
|
99
|
+
mobileStepTitle={{
|
|
100
|
+
className:
|
|
101
|
+
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit",
|
|
102
|
+
}}
|
|
103
|
+
mobileStepDescription={{
|
|
104
|
+
className:
|
|
105
|
+
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
|
|
106
|
+
}}
|
|
107
|
+
ariaLabel="IntelliOpAI process timeline"
|
|
108
|
+
/>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { ServicesGrid as SharedServicesGrid } from "@/components/sections/ServicesGrid";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for ServicesGrid
|
|
7
|
-
*/
|
|
8
|
-
export function ServicesGrid() {
|
|
9
|
-
const servicesData = [
|
|
10
|
-
{
|
|
11
|
-
icon: "🤖",
|
|
12
|
-
title: "AI Automation Solutions",
|
|
13
|
-
description:
|
|
14
|
-
"Streamline your business processes with intelligent automation that reduces manual work and increases efficiency by up to 80%.",
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
icon: "📊",
|
|
18
|
-
title: "Predictive Analytics",
|
|
19
|
-
description:
|
|
20
|
-
"Make data-driven decisions with AI-powered insights that predict trends, optimize operations, and maximize ROI.",
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
icon: "💬",
|
|
24
|
-
title: "Intelligent Chatbots",
|
|
25
|
-
description:
|
|
26
|
-
"Enhance customer experience with AI chatbots that provide instant, accurate responses 24/7 and reduce support costs.",
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
icon: "🔍",
|
|
30
|
-
title: "Smart Document Processing",
|
|
31
|
-
description:
|
|
32
|
-
"Extract and analyze information from documents automatically, reducing processing time by 90% and improving accuracy.",
|
|
33
|
-
},
|
|
34
|
-
];
|
|
35
|
-
|
|
36
|
-
return (
|
|
37
|
-
<SharedServicesGrid
|
|
38
|
-
enableMotion={true}
|
|
39
|
-
sectionHeading="AI-Powered Solutions"
|
|
40
|
-
servicesData={servicesData}
|
|
41
|
-
section={{ className: "py-20 md:py-24 lg:py-28 bg-white dark:bg-black" }}
|
|
42
|
-
container={{ className: "max-w-6xl mx-auto px-6 md:px-8 lg:px-12" }}
|
|
43
|
-
heading={{
|
|
44
|
-
className:
|
|
45
|
-
"text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center mb-12 md:mb-16 font-outfit",
|
|
46
|
-
}}
|
|
47
|
-
grid={{ className: "grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-10" }}
|
|
48
|
-
card={{
|
|
49
|
-
className:
|
|
50
|
-
"bg-white dark:bg-gray-800 p-8 md:p-10 rounded-xl border border-gray-200 dark:border-gray-700 shadow-lg hover:shadow-2xl hover:-translate-y-2 transition-all duration-300 group",
|
|
51
|
-
}}
|
|
52
|
-
cardContent={{ className: "flex flex-col items-start h-full space-y-6" }}
|
|
53
|
-
icon={{
|
|
54
|
-
className:
|
|
55
|
-
"text-5xl md:text-6xl group-hover:scale-110 transition-transform duration-300",
|
|
56
|
-
}}
|
|
57
|
-
title={{
|
|
58
|
-
className:
|
|
59
|
-
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
|
|
60
|
-
}}
|
|
61
|
-
description={{
|
|
62
|
-
className:
|
|
63
|
-
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter flex-1",
|
|
64
|
-
}}
|
|
65
|
-
ariaLabel="IntelliOpAI services section"
|
|
66
|
-
/>
|
|
67
|
-
);
|
|
68
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ServicesGrid as SharedServicesGrid } from "@/components/sections/ServicesGrid";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for ServicesGrid
|
|
7
|
+
*/
|
|
8
|
+
export function ServicesGrid() {
|
|
9
|
+
const servicesData = [
|
|
10
|
+
{
|
|
11
|
+
icon: "🤖",
|
|
12
|
+
title: "AI Automation Solutions",
|
|
13
|
+
description:
|
|
14
|
+
"Streamline your business processes with intelligent automation that reduces manual work and increases efficiency by up to 80%.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
icon: "📊",
|
|
18
|
+
title: "Predictive Analytics",
|
|
19
|
+
description:
|
|
20
|
+
"Make data-driven decisions with AI-powered insights that predict trends, optimize operations, and maximize ROI.",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
icon: "💬",
|
|
24
|
+
title: "Intelligent Chatbots",
|
|
25
|
+
description:
|
|
26
|
+
"Enhance customer experience with AI chatbots that provide instant, accurate responses 24/7 and reduce support costs.",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
icon: "🔍",
|
|
30
|
+
title: "Smart Document Processing",
|
|
31
|
+
description:
|
|
32
|
+
"Extract and analyze information from documents automatically, reducing processing time by 90% and improving accuracy.",
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<SharedServicesGrid
|
|
38
|
+
enableMotion={true}
|
|
39
|
+
sectionHeading="AI-Powered Solutions"
|
|
40
|
+
servicesData={servicesData}
|
|
41
|
+
section={{ className: "py-20 md:py-24 lg:py-28 bg-white dark:bg-black" }}
|
|
42
|
+
container={{ className: "max-w-6xl mx-auto px-6 md:px-8 lg:px-12" }}
|
|
43
|
+
heading={{
|
|
44
|
+
className:
|
|
45
|
+
"text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center mb-12 md:mb-16 font-outfit",
|
|
46
|
+
}}
|
|
47
|
+
grid={{ className: "grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-10" }}
|
|
48
|
+
card={{
|
|
49
|
+
className:
|
|
50
|
+
"bg-white dark:bg-gray-800 p-8 md:p-10 rounded-xl border border-gray-200 dark:border-gray-700 shadow-lg hover:shadow-2xl hover:-translate-y-2 transition-all duration-300 group",
|
|
51
|
+
}}
|
|
52
|
+
cardContent={{ className: "flex flex-col items-start h-full space-y-6" }}
|
|
53
|
+
icon={{
|
|
54
|
+
className:
|
|
55
|
+
"text-5xl md:text-6xl group-hover:scale-110 transition-transform duration-300",
|
|
56
|
+
}}
|
|
57
|
+
title={{
|
|
58
|
+
className:
|
|
59
|
+
"text-lg md:text-xl font-semibold text-gray-800 dark:text-white leading-tight font-outfit group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
|
|
60
|
+
}}
|
|
61
|
+
description={{
|
|
62
|
+
className:
|
|
63
|
+
"text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter flex-1",
|
|
64
|
+
}}
|
|
65
|
+
ariaLabel="IntelliOpAI services section"
|
|
66
|
+
/>
|
|
67
|
+
);
|
|
68
|
+
}
|