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,83 +1,83 @@
1
- "use client";
2
-
3
- import { Features as SharedFeatures } from "@/components/sections/Features";
4
-
5
- /**
6
- * Product Launch preset for Features
7
- */
8
- export function Features() {
9
- const featuresData = [
10
- {
11
- imageSrc: "/placeholders/product_launch/feature_1.png",
12
- imageAlt: "AI-Powered Analytics Dashboard",
13
- headingText: "Intelligent Analytics",
14
- subheadingText:
15
- "Harness the power of AI to gain deep insights into your business performance. Our machine learning algorithms analyze patterns and provide actionable recommendations to drive growth.",
16
- },
17
- {
18
- imageSrc: "/placeholders/product_launch/feature_2.png",
19
- imageAlt: "Real-time AI Collaboration Platform",
20
- headingText: "AI-Powered Collaboration",
21
- subheadingText:
22
- "Work seamlessly with AI assistants that understand context and help your team stay productive. Our intelligent collaboration tools adapt to your workflow and boost efficiency.",
23
- },
24
- {
25
- imageSrc: "/placeholders/product_launch/feature_3.png",
26
- imageAlt: "Advanced AI Security System",
27
- headingText: "AI-Enhanced Security",
28
- subheadingText:
29
- "Protect your data with next-generation AI security that learns and adapts to threats in real-time. Enterprise-grade protection with intelligent threat detection and prevention.",
30
- },
31
- {
32
- imageSrc: "/placeholders/product_launch/feature_4.png",
33
- imageAlt: "Mobile AI Interface",
34
- headingText: "Smart Mobile Experience",
35
- subheadingText:
36
- "Access your AI-powered workspace from anywhere with our intelligent mobile interface. Responsive design that adapts to your device and provides contextual assistance on the go.",
37
- },
38
- ];
39
-
40
- return (
41
- <SharedFeatures
42
- id="features"
43
- sectionHeading="AI-Powered Features"
44
- sectionSubheading="Experience the future of intelligent automation with our cutting-edge AI technology"
45
- featuresData={featuresData}
46
- section={{
47
- className: "py-20 md:py-24 lg:py-28 bg-white dark:bg-gray-900",
48
- }}
49
- container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
50
- header={{ className: "text-center mb-16" }}
51
- heading={{
52
- className:
53
- "text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
54
- }}
55
- subheading={{
56
- className:
57
- "text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-4xl mx-auto leading-relaxed font-inter",
58
- }}
59
- grid={{
60
- className:
61
- "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-4 gap-8 md:gap-10",
62
- }}
63
- card={{
64
- className:
65
- "h-full transition-all duration-500 hover:-translate-y-4 hover:shadow-2xl hover:shadow-purple-500/20 group border border-gray-100 dark:border-gray-800 rounded-xl overflow-hidden",
66
- }}
67
- image={{
68
- className:
69
- "object-cover transition-transform duration-300 group-hover:scale-102",
70
- }}
71
- cardHeading={{
72
- className:
73
- "text-lg md:text-xl font-semibold text-gray-800 dark:text-white mb-4 leading-tight font-inter group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
74
- }}
75
- cardSubheading={{
76
- className:
77
- "text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
78
- }}
79
- ariaLabel="AI-powered features for IntelliOpAI"
80
- enableMotion={true}
81
- />
82
- );
83
- }
1
+ "use client";
2
+
3
+ import { Features as SharedFeatures } from "@/components/sections/Features";
4
+
5
+ /**
6
+ * Product Launch preset for Features
7
+ */
8
+ export function Features() {
9
+ const featuresData = [
10
+ {
11
+ imageSrc: "/placeholders/product_launch/feature_1.png",
12
+ imageAlt: "AI-Powered Analytics Dashboard",
13
+ headingText: "Intelligent Analytics",
14
+ subheadingText:
15
+ "Harness the power of AI to gain deep insights into your business performance. Our machine learning algorithms analyze patterns and provide actionable recommendations to drive growth.",
16
+ },
17
+ {
18
+ imageSrc: "/placeholders/product_launch/feature_2.png",
19
+ imageAlt: "Real-time AI Collaboration Platform",
20
+ headingText: "AI-Powered Collaboration",
21
+ subheadingText:
22
+ "Work seamlessly with AI assistants that understand context and help your team stay productive. Our intelligent collaboration tools adapt to your workflow and boost efficiency.",
23
+ },
24
+ {
25
+ imageSrc: "/placeholders/product_launch/feature_3.png",
26
+ imageAlt: "Advanced AI Security System",
27
+ headingText: "AI-Enhanced Security",
28
+ subheadingText:
29
+ "Protect your data with next-generation AI security that learns and adapts to threats in real-time. Enterprise-grade protection with intelligent threat detection and prevention.",
30
+ },
31
+ {
32
+ imageSrc: "/placeholders/product_launch/feature_4.png",
33
+ imageAlt: "Mobile AI Interface",
34
+ headingText: "Smart Mobile Experience",
35
+ subheadingText:
36
+ "Access your AI-powered workspace from anywhere with our intelligent mobile interface. Responsive design that adapts to your device and provides contextual assistance on the go.",
37
+ },
38
+ ];
39
+
40
+ return (
41
+ <SharedFeatures
42
+ id="features"
43
+ sectionHeading="AI-Powered Features"
44
+ sectionSubheading="Experience the future of intelligent automation with our cutting-edge AI technology"
45
+ featuresData={featuresData}
46
+ section={{
47
+ className: "py-20 md:py-24 lg:py-28 bg-white dark:bg-gray-900",
48
+ }}
49
+ container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
50
+ header={{ className: "text-center mb-16" }}
51
+ heading={{
52
+ className:
53
+ "text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
54
+ }}
55
+ subheading={{
56
+ className:
57
+ "text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-4xl mx-auto leading-relaxed font-inter",
58
+ }}
59
+ grid={{
60
+ className:
61
+ "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-4 gap-8 md:gap-10",
62
+ }}
63
+ card={{
64
+ className:
65
+ "h-full transition-all duration-500 hover:-translate-y-4 hover:shadow-2xl hover:shadow-purple-500/20 group border border-gray-100 dark:border-gray-800 rounded-xl overflow-hidden",
66
+ }}
67
+ image={{
68
+ className:
69
+ "object-cover transition-transform duration-300 group-hover:scale-102",
70
+ }}
71
+ cardHeading={{
72
+ className:
73
+ "text-lg md:text-xl font-semibold text-gray-800 dark:text-white mb-4 leading-tight font-inter group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
74
+ }}
75
+ cardSubheading={{
76
+ className:
77
+ "text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
78
+ }}
79
+ ariaLabel="AI-powered features for IntelliOpAI"
80
+ enableMotion={true}
81
+ />
82
+ );
83
+ }
@@ -1,132 +1,132 @@
1
- "use client";
2
-
3
- import { Footer as SharedFooter } from "@/components/sections/Footer";
4
- import { Twitter, Linkedin, Github, Youtube, Mail } from "lucide-react";
5
-
6
- /**
7
- * Preset Footer for the Product Launch template
8
- */
9
- export function Footer() {
10
- return (
11
- <SharedFooter
12
- id="footer"
13
- footerBrandName="IntelliOpAI"
14
- footerNavLinks={[
15
- {
16
- heading: "Product",
17
- links: [
18
- { name: "Features", href: "#features" },
19
- { name: "Pricing", href: "#pricing" },
20
- { name: "API Documentation", href: "#api-docs" },
21
- { name: "FAQ", href: "#faq" },
22
- ],
23
- },
24
- {
25
- heading: "Company",
26
- links: [
27
- { name: "About", href: "#about" },
28
- { name: "Careers", href: "#careers" },
29
- { name: "Blog", href: "#blog" },
30
- { name: "Contact", href: "#contact" },
31
- ],
32
- },
33
- {
34
- heading: "Resources",
35
- links: [
36
- { name: "Help Center", href: "#help" },
37
- { name: "Terms of Service", href: "#terms" },
38
- { name: "Privacy Policy", href: "#privacy" },
39
- { name: "System Status", href: "#status" },
40
- ],
41
- },
42
- {
43
- heading: "Developers",
44
- links: [
45
- { name: "API Reference", href: "#api" },
46
- { name: "SDKs", href: "#sdk" },
47
- { name: "GitHub", href: "https://github.com", external: true },
48
- { name: "Community", href: "#community" },
49
- ],
50
- },
51
- ]}
52
- footerSocialLinks={[
53
- {
54
- name: "Twitter",
55
- icon: Twitter,
56
- url: "https://twitter.com/intelliopai",
57
- external: true,
58
- label: "Follow IntelliOpAI on Twitter",
59
- },
60
- {
61
- name: "LinkedIn",
62
- icon: Linkedin,
63
- url: "https://linkedin.com/company/intelliopai",
64
- external: true,
65
- label: "Connect with IntelliOpAI on LinkedIn",
66
- },
67
- {
68
- name: "GitHub",
69
- icon: Github,
70
- url: "https://github.com/intelliopai",
71
- external: true,
72
- label: "View IntelliOpAI on GitHub",
73
- },
74
- {
75
- name: "YouTube",
76
- icon: Youtube,
77
- url: "https://youtube.com/@intelliopai",
78
- external: true,
79
- label: "Watch IntelliOpAI on YouTube",
80
- },
81
- {
82
- name: "Email",
83
- icon: Mail,
84
- url: "mailto:hello@intelliopai.com",
85
- external: true,
86
- label: "Contact IntelliOpAI via email",
87
- },
88
- ]}
89
- section={{
90
- className:
91
- "w-full bg-white dark:bg-black text-gray-800 dark:text-white border-t border-gray-200 dark:border-gray-800",
92
- }}
93
- container={{ className: "max-w-7xl mx-auto px-6" }}
94
- brand={{
95
- className:
96
- "text-xl md:text-2xl font-bold text-purple-600 dark:text-purple-400 font-outfit",
97
- }}
98
- brandWrapper={{
99
- className: "flex flex-col items-start text-left lg:pr-8",
100
- }}
101
- navSection={{
102
- className:
103
- "flex flex-col lg:flex-row items-start justify-between gap-8 lg:gap-12 pt-10.5 pb-12",
104
- }}
105
- navGroup={{
106
- className: "flex flex-col items-start text-left min-w-[150px] pt-1.5",
107
- }}
108
- navHeading={{
109
- className:
110
- "font-semibold text-gray-800 dark:text-white mb-4 text-sm uppercase tracking-wider font-inter",
111
- }}
112
- navLink={{
113
- className:
114
- "text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-200 text-sm mb-3 font-inter block",
115
- }}
116
- socialSection={{
117
- className:
118
- "flex items-center justify-center gap-6 py-8 border-t border-gray-200 dark:border-gray-800",
119
- }}
120
- socialLink={{
121
- className:
122
- "text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-all duration-200 p-3 rounded-lg hover:bg-purple-50 dark:hover:bg-purple-900/20 hover:scale-110",
123
- }}
124
- socialIcon={{ className: "h-6 w-6" }}
125
- copyright={{
126
- className:
127
- "text-center text-sm text-gray-500 dark:text-gray-400 py-6 border-t border-gray-200 dark:border-gray-800 font-inter",
128
- }}
129
- ariaLabel="IntelliOpAI footer"
130
- />
131
- );
132
- }
1
+ "use client";
2
+
3
+ import { Footer as SharedFooter } from "@/components/sections/Footer";
4
+ import { Twitter, Linkedin, Github, Youtube, Mail } from "lucide-react";
5
+
6
+ /**
7
+ * Preset Footer for the Product Launch template
8
+ */
9
+ export function Footer() {
10
+ return (
11
+ <SharedFooter
12
+ id="footer"
13
+ footerBrandName="IntelliOpAI"
14
+ footerNavLinks={[
15
+ {
16
+ heading: "Product",
17
+ links: [
18
+ { name: "Features", href: "#features" },
19
+ { name: "Pricing", href: "#pricing" },
20
+ { name: "API Documentation", href: "#api-docs" },
21
+ { name: "FAQ", href: "#faq" },
22
+ ],
23
+ },
24
+ {
25
+ heading: "Company",
26
+ links: [
27
+ { name: "About", href: "#about" },
28
+ { name: "Careers", href: "#careers" },
29
+ { name: "Blog", href: "#blog" },
30
+ { name: "Contact", href: "#contact" },
31
+ ],
32
+ },
33
+ {
34
+ heading: "Resources",
35
+ links: [
36
+ { name: "Help Center", href: "#help" },
37
+ { name: "Terms of Service", href: "#terms" },
38
+ { name: "Privacy Policy", href: "#privacy" },
39
+ { name: "System Status", href: "#status" },
40
+ ],
41
+ },
42
+ {
43
+ heading: "Developers",
44
+ links: [
45
+ { name: "API Reference", href: "#api" },
46
+ { name: "SDKs", href: "#sdk" },
47
+ { name: "GitHub", href: "https://github.com", external: true },
48
+ { name: "Community", href: "#community" },
49
+ ],
50
+ },
51
+ ]}
52
+ footerSocialLinks={[
53
+ {
54
+ name: "Twitter",
55
+ icon: Twitter,
56
+ url: "https://twitter.com/intelliopai",
57
+ external: true,
58
+ label: "Follow IntelliOpAI on Twitter",
59
+ },
60
+ {
61
+ name: "LinkedIn",
62
+ icon: Linkedin,
63
+ url: "https://linkedin.com/company/intelliopai",
64
+ external: true,
65
+ label: "Connect with IntelliOpAI on LinkedIn",
66
+ },
67
+ {
68
+ name: "GitHub",
69
+ icon: Github,
70
+ url: "https://github.com/intelliopai",
71
+ external: true,
72
+ label: "View IntelliOpAI on GitHub",
73
+ },
74
+ {
75
+ name: "YouTube",
76
+ icon: Youtube,
77
+ url: "https://youtube.com/@intelliopai",
78
+ external: true,
79
+ label: "Watch IntelliOpAI on YouTube",
80
+ },
81
+ {
82
+ name: "Email",
83
+ icon: Mail,
84
+ url: "mailto:hello@intelliopai.com",
85
+ external: true,
86
+ label: "Contact IntelliOpAI via email",
87
+ },
88
+ ]}
89
+ section={{
90
+ className:
91
+ "w-full bg-white dark:bg-black text-gray-800 dark:text-white border-t border-gray-200 dark:border-gray-800",
92
+ }}
93
+ container={{ className: "max-w-7xl mx-auto px-6" }}
94
+ brand={{
95
+ className:
96
+ "text-xl md:text-2xl font-bold text-purple-600 dark:text-purple-400 font-outfit",
97
+ }}
98
+ brandWrapper={{
99
+ className: "flex flex-col items-start text-left lg:pr-8",
100
+ }}
101
+ navSection={{
102
+ className:
103
+ "flex flex-col lg:flex-row items-start justify-between gap-8 lg:gap-12 pt-10.5 pb-12",
104
+ }}
105
+ navGroup={{
106
+ className: "flex flex-col items-start text-left min-w-[150px] pt-1.5",
107
+ }}
108
+ navHeading={{
109
+ className:
110
+ "font-semibold text-gray-800 dark:text-white mb-4 text-sm uppercase tracking-wider font-inter",
111
+ }}
112
+ navLink={{
113
+ className:
114
+ "text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors duration-200 text-sm mb-3 font-inter block",
115
+ }}
116
+ socialSection={{
117
+ className:
118
+ "flex items-center justify-center gap-6 py-8 border-t border-gray-200 dark:border-gray-800",
119
+ }}
120
+ socialLink={{
121
+ className:
122
+ "text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-all duration-200 p-3 rounded-lg hover:bg-purple-50 dark:hover:bg-purple-900/20 hover:scale-110",
123
+ }}
124
+ socialIcon={{ className: "h-6 w-6" }}
125
+ copyright={{
126
+ className:
127
+ "text-center text-sm text-gray-500 dark:text-gray-400 py-6 border-t border-gray-200 dark:border-gray-800 font-inter",
128
+ }}
129
+ ariaLabel="IntelliOpAI footer"
130
+ />
131
+ );
132
+ }
@@ -1,88 +1,88 @@
1
- "use client";
2
-
3
- import { HeroSplit as SharedHeroSplit } from "@/components/sections/HeroSplit";
4
-
5
- /**
6
- * Product Launch preset for Hero
7
- */
8
- export function Hero() {
9
- return (
10
- <SharedHeroSplit
11
- heading={{
12
- text: "Revolutionize Your Workflow with AI",
13
- className:
14
- "text-3xl md:text-4xl lg:text-5xl xl:text-6xl font-bold leading-tight text-black dark:text-white font-outfit mx-auto",
15
- }}
16
- subheading={{
17
- text: "Transform your business operations with our cutting-edge AI solutions. Streamline processes, boost productivity, and unlock new possibilities for growth.",
18
- className:
19
- "text-base md:text-lg lg:text-xl text-gray-700 dark:text-gray-100 mt-6 mb-8 max-w-2xl font-inter leading-relaxed mx-auto",
20
- }}
21
- section={{
22
- className:
23
- "bg-gradient-to-br from-white via-purple-50 to-white dark:from-gray-900 dark:via-purple-950/20 dark:to-gray-900 pt-16 px-8 pb-8",
24
- }}
25
- cta1={{
26
- label: "Get Started",
27
- href: "#contact",
28
- variant: "default",
29
- size: "lg",
30
- className: [
31
- "text-base font-semibold shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 px-8 py-3",
32
- "[--btn-bg:theme(colors.purple.600)]",
33
- "hover:[--btn-hover-bg:theme(colors.purple.700)]",
34
- "[--btn-fg:theme(colors.white)]",
35
- "hover:[--btn-hover-fg:theme(colors.white)]",
36
- ].join(" "),
37
- }}
38
- cta2={{
39
- label: "Learn More",
40
- href: "#features",
41
- variant: "outline",
42
- size: "lg",
43
- className: [
44
- // Layout/typography/shadow/transitions
45
- "text-base font-semibold shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 px-8 py-3",
46
- // Base colors (ensuring outline has transparent bg instead of token background)
47
- "[--btn-bg:transparent]",
48
- // CSS variable overrides to control colors while keeping the outline variant structure
49
- "[--btn-fg:theme(colors.purple.600)]",
50
- "[--btn-border:theme(colors.purple.600)]",
51
- "hover:[--btn-hover-bg:theme(colors.purple.50)]",
52
- "hover:[--btn-hover-fg:theme(colors.purple.600)]",
53
- // Dark mode
54
- "dark:[--btn-bg:transparent]",
55
- "dark:[--btn-fg:theme(colors.purple.500)]",
56
- "dark:[--btn-border:theme(colors.purple.500)]",
57
- "dark:hover:[--btn-hover-bg:theme(colors.purple.950)]",
58
- "dark:hover:[--btn-hover-fg:theme(colors.purple.500)]",
59
- // Ensure hover text stays the intended color in light mode
60
- "hover:[--btn-hover-fg:theme(colors.purple.600)]",
61
- // Ensure a border width is present for the outline variant override cases
62
- "border",
63
- ].join(" "),
64
- }}
65
- image={{
66
- src: "/placeholders/product_launch/hero.png",
67
- alt: "AI-powered workflow illustration",
68
- className: "object-contain",
69
- }}
70
- imageLayout="padded"
71
- imageContainer={{
72
- className: "md:h-80 lg:h-96 md:w-1/2",
73
- }}
74
- textContainer={{
75
- className: " flex-1 p-5 lg:p-8 text-center lg:text-left",
76
- }}
77
- buttonsContainer={{
78
- className: [
79
- "flex flex-col sm:flex-row gap-4 mt-8 justify-center lg:justify-start",
80
- "[--btn-ring:theme(colors.purple.500)]",
81
- "dark:[--btn-ring:theme(colors.purple.400)]",
82
- ].join(" "),
83
- }}
84
- textAlign="center"
85
- ariaLabel="Revolutionize your workflow with AI hero section"
86
- />
87
- );
88
- }
1
+ "use client";
2
+
3
+ import { HeroSplit as SharedHeroSplit } from "@/components/sections/HeroSplit";
4
+
5
+ /**
6
+ * Product Launch preset for Hero
7
+ */
8
+ export function Hero() {
9
+ return (
10
+ <SharedHeroSplit
11
+ heading={{
12
+ text: "Goodie Revolutionize Your Workflow with AI",
13
+ className:
14
+ "text-3xl md:text-4xl lg:text-5xl xl:text-6xl font-bold leading-tight text-black dark:text-white font-outfit mx-auto",
15
+ }}
16
+ subheading={{
17
+ text: "Transform your business operations with our cutting-edge AI solutions. Streamline processes, boost productivity, and unlock new possibilities for growth.",
18
+ className:
19
+ "text-base md:text-lg lg:text-xl text-gray-700 dark:text-gray-100 mt-6 mb-8 max-w-2xl font-inter leading-relaxed mx-auto",
20
+ }}
21
+ section={{
22
+ className:
23
+ "bg-gradient-to-br from-white via-purple-50 to-white dark:from-gray-900 dark:via-purple-950/20 dark:to-gray-900 pt-16 px-8 pb-8",
24
+ }}
25
+ cta1={{
26
+ label: "Get Started",
27
+ href: "#contact",
28
+ variant: "default",
29
+ size: "lg",
30
+ className: [
31
+ "text-base font-semibold shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 px-8 py-3",
32
+ "[--btn-bg:theme(colors.purple.600)]",
33
+ "hover:[--btn-hover-bg:theme(colors.purple.700)]",
34
+ "[--btn-fg:theme(colors.white)]",
35
+ "hover:[--btn-hover-fg:theme(colors.white)]",
36
+ ].join(" "),
37
+ }}
38
+ cta2={{
39
+ label: "Learn More",
40
+ href: "#features",
41
+ variant: "outline",
42
+ size: "lg",
43
+ className: [
44
+ // Layout/typography/shadow/transitions
45
+ "text-base font-semibold shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 px-8 py-3",
46
+ // Base colors (ensuring outline has transparent bg instead of token background)
47
+ "[--btn-bg:transparent]",
48
+ // CSS variable overrides to control colors while keeping the outline variant structure
49
+ "[--btn-fg:theme(colors.purple.600)]",
50
+ "[--btn-border:theme(colors.purple.600)]",
51
+ "hover:[--btn-hover-bg:theme(colors.purple.50)]",
52
+ "hover:[--btn-hover-fg:theme(colors.purple.600)]",
53
+ // Dark mode
54
+ "dark:[--btn-bg:transparent]",
55
+ "dark:[--btn-fg:theme(colors.purple.500)]",
56
+ "dark:[--btn-border:theme(colors.purple.500)]",
57
+ "dark:hover:[--btn-hover-bg:theme(colors.purple.950)]",
58
+ "dark:hover:[--btn-hover-fg:theme(colors.purple.500)]",
59
+ // Ensure hover text stays the intended color in light mode
60
+ "hover:[--btn-hover-fg:theme(colors.purple.600)]",
61
+ // Ensure a border width is present for the outline variant override cases
62
+ "border",
63
+ ].join(" "),
64
+ }}
65
+ image={{
66
+ src: "/placeholders/product_launch/hero.png",
67
+ alt: "AI-powered workflow illustration",
68
+ className: "object-contain",
69
+ }}
70
+ imageLayout="padded"
71
+ imageContainer={{
72
+ className: "md:h-80 lg:h-96 md:w-1/2",
73
+ }}
74
+ textContainer={{
75
+ className: " flex-1 p-5 lg:p-8 text-center lg:text-left",
76
+ }}
77
+ buttonsContainer={{
78
+ className: [
79
+ "flex flex-col sm:flex-row gap-4 mt-8 justify-center lg:justify-start",
80
+ "[--btn-ring:theme(colors.purple.500)]",
81
+ "dark:[--btn-ring:theme(colors.purple.400)]",
82
+ ].join(" "),
83
+ }}
84
+ textAlign="center"
85
+ ariaLabel="Revolutionize your workflow with AI hero section"
86
+ />
87
+ );
88
+ }