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,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
+ }
@@ -1,104 +1,104 @@
1
- "use client";
2
-
3
- import { Team as SharedTeam } from "@/components/sections/Team";
4
-
5
- /**
6
- * Product Launch preset for Team
7
- */
8
- export function Team() {
9
- const teamMembers = [
10
- {
11
- name: "Dr. Sarah Chen",
12
- role: "Chief AI Officer",
13
- bio: "Leading AI researcher with 15+ years in machine learning and neural networks. PhD from MIT.",
14
- avatar: "👩‍🔬",
15
- socialLinks: [
16
- { platform: "LinkedIn", url: "#", icon: "💼" },
17
- { platform: "Twitter", url: "#", icon: "🐦" },
18
- { platform: "GitHub", url: "#", icon: "💻" },
19
- ],
20
- },
21
- {
22
- name: "Marcus Rodriguez",
23
- role: "Head of AI Engineering",
24
- bio: "Full-stack AI engineer specializing in scalable ML systems and cloud infrastructure.",
25
- avatar: "👨‍💻",
26
- socialLinks: [
27
- { platform: "LinkedIn", url: "#", icon: "💼" },
28
- { platform: "GitHub", url: "#", icon: "💻" },
29
- ],
30
- },
31
- {
32
- name: "Dr. Emily Watson",
33
- role: "AI Research Director",
34
- bio: "Expert in natural language processing and computer vision with 12+ years of research experience.",
35
- avatar: "👩‍🎓",
36
- socialLinks: [
37
- { platform: "LinkedIn", url: "#", icon: "💼" },
38
- { platform: "Twitter", url: "#", icon: "🐦" },
39
- ],
40
- },
41
- {
42
- name: "Alex Kim",
43
- role: "AI Product Manager",
44
- bio: "Strategic leader focused on bringing AI solutions to market with deep understanding of business needs.",
45
- avatar: "👨‍💼",
46
- socialLinks: [
47
- { platform: "LinkedIn", url: "#", icon: "💼" },
48
- { platform: "Twitter", url: "#", icon: "🐦" },
49
- ],
50
- },
51
- ];
52
-
53
- return (
54
- <SharedTeam
55
- teamHeadingText="Meet the AI Experts"
56
- teamSubheadingText="Our world-class team of AI researchers, engineers, and strategists working to revolutionize your business with cutting-edge artificial intelligence."
57
- teamMembers={teamMembers}
58
- section={{
59
- className: "py-20 md:py-24 lg:py-28 bg-gray-50 dark:bg-gray-900",
60
- }}
61
- container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
62
- header={{ className: "space-y-16 items-center" }}
63
- heading={{
64
- className:
65
- "text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
66
- }}
67
- subheading={{
68
- className:
69
- "text-lg md:text-xl text-gray-600 dark:text-gray-300 opacity-90 leading-relaxed text-center max-w-4xl mx-auto font-inter",
70
- }}
71
- grid={{
72
- className:
73
- "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 md:gap-10 w-full",
74
- }}
75
- card={{
76
- className:
77
- "bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg text-center transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl group border border-gray-200 dark:border-gray-700",
78
- }}
79
- cardContent={{ className: "flex flex-col items-center space-y-6" }}
80
- avatar={{
81
- className:
82
- "text-5xl md:text-6xl mb-3 group-hover:scale-110 transition-transform duration-300",
83
- }}
84
- name={{
85
- className:
86
- "text-lg md:text-xl font-bold text-gray-800 dark:text-white font-outfit group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
87
- }}
88
- role={{
89
- className:
90
- "text-base font-semibold text-purple-600 dark:text-purple-400 font-inter",
91
- }}
92
- bio={{
93
- className:
94
- "text-sm md:text-base text-gray-600 dark:text-gray-300 opacity-90 leading-relaxed font-inter",
95
- }}
96
- socialLinks={{ className: "flex gap-4 mt-4" }}
97
- socialLink={{
98
- className:
99
- "text-xl text-purple-600 hover:text-purple-700 dark:text-purple-400 dark:hover:text-purple-300 transition-colors duration-200 hover:scale-110 transform",
100
- }}
101
- ariaLabel="IntelliOpAI team section"
102
- />
103
- );
104
- }
1
+ "use client";
2
+
3
+ import { Team as SharedTeam } from "@/components/sections/Team";
4
+
5
+ /**
6
+ * Product Launch preset for Team
7
+ */
8
+ export function Team() {
9
+ const teamMembers = [
10
+ {
11
+ name: "Dr. Sarah Chen",
12
+ role: "Chief AI Officer",
13
+ bio: "Leading AI researcher with 15+ years in machine learning and neural networks. PhD from MIT.",
14
+ avatar: "👩‍🔬",
15
+ socialLinks: [
16
+ { platform: "LinkedIn", url: "#", icon: "💼" },
17
+ { platform: "Twitter", url: "#", icon: "🐦" },
18
+ { platform: "GitHub", url: "#", icon: "💻" },
19
+ ],
20
+ },
21
+ {
22
+ name: "Marcus Rodriguez",
23
+ role: "Head of AI Engineering",
24
+ bio: "Full-stack AI engineer specializing in scalable ML systems and cloud infrastructure.",
25
+ avatar: "👨‍💻",
26
+ socialLinks: [
27
+ { platform: "LinkedIn", url: "#", icon: "💼" },
28
+ { platform: "GitHub", url: "#", icon: "💻" },
29
+ ],
30
+ },
31
+ {
32
+ name: "Dr. Emily Watson",
33
+ role: "AI Research Director",
34
+ bio: "Expert in natural language processing and computer vision with 12+ years of research experience.",
35
+ avatar: "👩‍🎓",
36
+ socialLinks: [
37
+ { platform: "LinkedIn", url: "#", icon: "💼" },
38
+ { platform: "Twitter", url: "#", icon: "🐦" },
39
+ ],
40
+ },
41
+ {
42
+ name: "Alex Kim",
43
+ role: "AI Product Manager",
44
+ bio: "Strategic leader focused on bringing AI solutions to market with deep understanding of business needs.",
45
+ avatar: "👨‍💼",
46
+ socialLinks: [
47
+ { platform: "LinkedIn", url: "#", icon: "💼" },
48
+ { platform: "Twitter", url: "#", icon: "🐦" },
49
+ ],
50
+ },
51
+ ];
52
+
53
+ return (
54
+ <SharedTeam
55
+ teamHeadingText="Meet the AI Experts"
56
+ teamSubheadingText="Our world-class team of AI researchers, engineers, and strategists working to revolutionize your business with cutting-edge artificial intelligence."
57
+ teamMembers={teamMembers}
58
+ section={{
59
+ className: "py-20 md:py-24 lg:py-28 bg-gray-50 dark:bg-gray-900",
60
+ }}
61
+ container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
62
+ header={{ className: "space-y-16 items-center" }}
63
+ heading={{
64
+ className:
65
+ "text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
66
+ }}
67
+ subheading={{
68
+ className:
69
+ "text-lg md:text-xl text-gray-600 dark:text-gray-300 opacity-90 leading-relaxed text-center max-w-4xl mx-auto font-inter",
70
+ }}
71
+ grid={{
72
+ className:
73
+ "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 md:gap-10 w-full",
74
+ }}
75
+ card={{
76
+ className:
77
+ "bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg text-center transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl group border border-gray-200 dark:border-gray-700",
78
+ }}
79
+ cardContent={{ className: "flex flex-col items-center space-y-6" }}
80
+ avatar={{
81
+ className:
82
+ "text-5xl md:text-6xl mb-3 group-hover:scale-110 transition-transform duration-300",
83
+ }}
84
+ name={{
85
+ className:
86
+ "text-lg md:text-xl font-bold text-gray-800 dark:text-white font-outfit group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
87
+ }}
88
+ role={{
89
+ className:
90
+ "text-base font-semibold text-purple-600 dark:text-purple-400 font-inter",
91
+ }}
92
+ bio={{
93
+ className:
94
+ "text-sm md:text-base text-gray-600 dark:text-gray-300 opacity-90 leading-relaxed font-inter",
95
+ }}
96
+ socialLinks={{ className: "flex gap-4 mt-4" }}
97
+ socialLink={{
98
+ className:
99
+ "text-xl text-purple-600 hover:text-purple-700 dark:text-purple-400 dark:hover:text-purple-300 transition-colors duration-200 hover:scale-110 transform",
100
+ }}
101
+ ariaLabel="IntelliOpAI team section"
102
+ />
103
+ );
104
+ }