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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. package/README.md +280 -228
  2. package/dist/cli_manifests/blocks_manifest.json +193 -194
  3. package/dist/commands/blocks.d.ts +3 -0
  4. package/dist/commands/blocks.d.ts.map +1 -1
  5. package/dist/commands/blocks.js +128 -19
  6. package/dist/commands/blocks.js.map +1 -1
  7. package/dist/commands/doctor.d.ts +136 -0
  8. package/dist/commands/doctor.d.ts.map +1 -0
  9. package/dist/commands/doctor.js +696 -0
  10. package/dist/commands/doctor.js.map +1 -0
  11. package/dist/commands/remove-blocks.d.ts +4 -1
  12. package/dist/commands/remove-blocks.d.ts.map +1 -1
  13. package/dist/commands/remove-blocks.js +24 -6
  14. package/dist/commands/remove-blocks.js.map +1 -1
  15. package/dist/index.js +125 -4
  16. package/dist/index.js.map +1 -1
  17. package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
  18. package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
  19. package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
  20. package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
  21. package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
  22. package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
  23. package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
  24. package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
  25. package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
  26. package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
  27. package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
  28. package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
  29. package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
  30. package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
  31. package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
  32. package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
  33. package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
  34. package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
  35. package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
  36. package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
  37. package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
  38. package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
  39. package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
  40. package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
  41. package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
  42. package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
  43. package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
  44. package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
  45. package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
  46. package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
  47. package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
  48. package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
  49. package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
  50. package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
  51. package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
  52. package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
  53. package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
  54. package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
  55. package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
  56. package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
  57. package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
  58. package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
  59. package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
  60. package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
  61. package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
  62. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
  63. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
  64. package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
  65. package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
  66. package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
  67. package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
  68. package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
  69. package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
  70. package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
  71. package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
  72. package/dist/kits/blocks/components/sections/About.tsx +291 -291
  73. package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
  74. package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
  75. package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
  76. package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
  77. package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
  78. package/dist/kits/blocks/components/sections/Features.tsx +268 -270
  79. package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
  80. package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
  81. package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
  82. package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
  83. package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
  84. package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
  85. package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
  86. package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
  87. package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
  88. package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
  89. package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
  90. package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
  91. package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
  92. package/dist/kits/blocks/components/sections/Team.tsx +309 -309
  93. package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
  94. package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
  95. package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
  96. package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
  97. package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
  98. package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
  99. package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
  100. package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
  101. package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
  102. package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
  103. package/dist/kits/blocks/components/theme-provider.tsx +1 -34
  104. package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
  105. package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
  106. package/dist/kits/blocks/components/ui/button.tsx +122 -122
  107. package/dist/kits/blocks/components/ui/card.tsx +95 -95
  108. package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
  109. package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
  110. package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
  111. package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
  112. package/dist/kits/blocks/components/ui/input.tsx +27 -27
  113. package/dist/kits/blocks/components/ui/label.tsx +29 -29
  114. package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
  115. package/dist/kits/blocks/components/ui/select.tsx +25 -25
  116. package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
  117. package/dist/kits/blocks/components/ui/table.tsx +98 -98
  118. package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
  119. package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
  120. package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
  121. package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
  122. package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
  123. package/dist/kits/blocks/lib/themes.ts +400 -400
  124. package/dist/kits/blocks/lib/utils.ts +6 -9
  125. package/dist/kits/blocks/package-deps.json +40 -28
  126. package/dist/kits/blocks/tsconfig.json +11 -0
  127. package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
  128. package/dist/utils/file-operations.d.ts +3 -1
  129. package/dist/utils/file-operations.d.ts.map +1 -1
  130. package/dist/utils/file-operations.js +84 -12
  131. package/dist/utils/file-operations.js.map +1 -1
  132. package/dist/utils/installation-tracker.d.ts +2 -2
  133. package/dist/utils/installation-tracker.d.ts.map +1 -1
  134. package/dist/utils/installation-tracker.js +11 -11
  135. package/dist/utils/installation-tracker.js.map +1 -1
  136. package/dist/utils/package-manager.d.ts +6 -0
  137. package/dist/utils/package-manager.d.ts.map +1 -0
  138. package/dist/utils/package-manager.js +58 -0
  139. package/dist/utils/package-manager.js.map +1 -0
  140. package/dist/utils/yarn-pnp.d.ts +6 -0
  141. package/dist/utils/yarn-pnp.d.ts.map +1 -0
  142. package/dist/utils/yarn-pnp.js +39 -0
  143. package/dist/utils/yarn-pnp.js.map +1 -0
  144. package/package.json +5 -2
  145. package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
@@ -1,93 +1,86 @@
1
- "use client";
2
-
3
- import { FAQ as SharedFAQ } from "@/components/sections/FAQ";
4
- import { ChevronDown, ChevronUp } from "lucide-react";
5
-
6
- // - org. jsdoc in the bck folder
7
-
8
- /**
9
- * Upgraded preset FAQ component for the product launch page.
10
- * Now uses the new shared FAQ_new.tsx API while preserving
11
- * the original styling, content, and accessibility semantics.
12
- */
13
- export function FAQ() {
14
- return (
15
- <SharedFAQ
16
- faqSectionHeaderText="Frequently Asked Questions"
17
- faqData={[
18
- {
19
- question: "What is IntelliOpAI and how does it work?",
20
- answer:
21
- "IntelliOpAI is an advanced AI-powered platform that automates business operations and provides real-time insights. Our system uses machine learning algorithms to analyze your data, streamline workflows, and help you make smarter decisions faster.",
22
- },
23
- {
24
- question: "Do I need technical expertise to use IntelliOpAI?",
25
- answer:
26
- "Not at all! IntelliOpAI is designed with a user-friendly interface that requires no coding knowledge. Our intuitive dashboard and guided setup process make it easy for anyone to get started, regardless of their technical background.",
27
- },
28
- {
29
- question: "How does IntelliOpAI integrate with my existing systems?",
30
- answer:
31
- "IntelliOpAI offers seamless integration with popular business tools and platforms through our robust API and pre-built connectors. We support integration with CRM systems, databases, cloud services, and more to ensure a smooth transition.",
32
- },
33
- {
34
- question: "What kind of support do you provide?",
35
- answer:
36
- "We offer comprehensive 24/7 support including live chat, email support, and dedicated account managers for enterprise clients. Our team of AI experts is always ready to help you maximize the value of your IntelliOpAI implementation.",
37
- },
38
- {
39
- question: "Is my data secure with IntelliOpAI?",
40
- answer:
41
- "Absolutely. We implement enterprise-grade security measures including end-to-end encryption, SOC 2 compliance, and regular security audits. Your data is protected with the highest industry standards and we never share your information with third parties.",
42
- },
43
- {
44
- question: "Can IntelliOpAI scale with my business growth?",
45
- answer:
46
- "Yes! IntelliOpAI is built to scale with your business. Our flexible architecture can handle everything from small startups to large enterprises, automatically adjusting resources and capabilities as your needs evolve.",
47
- },
48
- ]}
49
- section={{
50
- className:
51
- "py-16 px-5 bg-white dark:bg-black text-gray-800 dark:text-white",
52
- }}
53
- container={{
54
- className: "max-w-6xl mx-auto",
55
- }}
56
- heading={{
57
- className:
58
- "text-2xl md:text-3xl lg:text-4xl font-bold text-center mb-8 text-gray-800 dark:text-white font-outfit",
59
- }}
60
- grid={{
61
- className: "grid grid-cols-1 lg:grid-cols-2 gap-6 px-5 py-8",
62
- }}
63
- item={{
64
- className: "mb-6 w-full",
65
- }}
66
- questionButton={{
67
- className:
68
- // "bg-gradient-to-r from-purple-600 to-purple-700 hover:from-purple-700 hover:to-purple-800 text-white p-5 cursor-pointer rounded-lg transition-all duration-200 flex items-center justify-between shadow-lg hover:shadow-xl hover:shadow-purple-500/30 hover:-translate-y-0.5 font-inter ",
69
-
70
- // your existing classes...
71
- "bg-gradient-to-r from-purple-600 to-purple-700 hover:from-purple-700 hover:to-purple-800 text-white p-5 cursor-pointer rounded-lg transition-all duration-200 flex items-center justify-between shadow-lg hover:shadow-xl hover:shadow-purple-500/30 hover:-translate-y-0.5 font-inter " +
72
- // define the ring and border CSS vars you want
73
- "[--btn-ring:theme(colors.purple.500)] dark:[--btn-ring:theme(colors.purple.400)] " +
74
- "[--btn-border:theme(colors.purple.500)] dark:[--btn-border:theme(colors.purple.400)] " +
75
- // ensure mouse focus uses your ring color too
76
- "focus:ring-[var(--btn-ring)]",
77
- }}
78
- // No extra styles for the question text; inherits from button
79
- questionText={{ className: "" }}
80
- chevronIcon={{
81
- className: "h-6 w-6 transition-transform duration-200 flex-shrink-0",
82
- }}
83
- openIcon={<ChevronUp className="h-6 w-6" />}
84
- closedIcon={<ChevronDown className="h-6 w-6" />}
85
- answer={{
86
- className:
87
- "bg-gray-50 dark:bg-gray-800 text-gray-800 dark:text-white rounded-lg overflow-hidden border border-purple-200 dark:border-purple-800 shadow-md",
88
- }}
89
- answerText={{ className: "p-5" }}
90
- ariaLabel="IntelliOpAI frequently asked questions"
91
- />
92
- );
93
- }
1
+ "use client";
2
+
3
+ import { FAQ as SharedFAQ } from "@/components/sections/FAQ";
4
+ import { ChevronDown, ChevronUp } from "lucide-react";
5
+
6
+ /**
7
+ * Preset FAQ component for the product launch page.
8
+ */
9
+ export function FAQ() {
10
+ return (
11
+ <SharedFAQ
12
+ faqSectionHeaderText="Frequently Asked Questions"
13
+ faqData={[
14
+ {
15
+ question: "What is IntelliOpAI and how does it work?",
16
+ answer:
17
+ "IntelliOpAI is an advanced AI-powered platform that automates business operations and provides real-time insights. Our system uses machine learning algorithms to analyze your data, streamline workflows, and help you make smarter decisions faster.",
18
+ },
19
+ {
20
+ question: "Do I need technical expertise to use IntelliOpAI?",
21
+ answer:
22
+ "Not at all! IntelliOpAI is designed with a user-friendly interface that requires no coding knowledge. Our intuitive dashboard and guided setup process make it easy for anyone to get started, regardless of their technical background.",
23
+ },
24
+ {
25
+ question: "How does IntelliOpAI integrate with my existing systems?",
26
+ answer:
27
+ "IntelliOpAI offers seamless integration with popular business tools and platforms through our robust API and pre-built connectors. We support integration with CRM systems, databases, cloud services, and more to ensure a smooth transition.",
28
+ },
29
+ {
30
+ question: "What kind of support do you provide?",
31
+ answer:
32
+ "We offer comprehensive 24/7 support including live chat, email support, and dedicated account managers for enterprise clients. Our team of AI experts is always ready to help you maximize the value of your IntelliOpAI implementation.",
33
+ },
34
+ {
35
+ question: "Is my data secure with IntelliOpAI?",
36
+ answer:
37
+ "Absolutely. We implement enterprise-grade security measures including end-to-end encryption, SOC 2 compliance, and regular security audits. Your data is protected with the highest industry standards and we never share your information with third parties.",
38
+ },
39
+ {
40
+ question: "Can IntelliOpAI scale with my business growth?",
41
+ answer:
42
+ "Yes! IntelliOpAI is built to scale with your business. Our flexible architecture can handle everything from small startups to large enterprises, automatically adjusting resources and capabilities as your needs evolve.",
43
+ },
44
+ ]}
45
+ section={{
46
+ className:
47
+ "py-16 px-5 bg-white dark:bg-black text-gray-800 dark:text-white",
48
+ }}
49
+ container={{
50
+ className: "max-w-6xl mx-auto",
51
+ }}
52
+ heading={{
53
+ className:
54
+ "text-2xl md:text-3xl lg:text-4xl font-bold text-center mb-8 text-gray-800 dark:text-white font-outfit",
55
+ }}
56
+ grid={{
57
+ className: "grid grid-cols-1 lg:grid-cols-2 gap-6 px-5 py-8",
58
+ }}
59
+ item={{
60
+ className: "mb-6 w-full",
61
+ }}
62
+ questionButton={{
63
+ className:
64
+ "bg-gradient-to-r from-purple-600 to-purple-700 hover:from-purple-700 hover:to-purple-800 text-white p-5 cursor-pointer rounded-lg transition-all duration-200 flex items-center justify-between shadow-lg hover:shadow-xl hover:shadow-purple-500/30 hover:-translate-y-0.5 font-inter " +
65
+ // Define the ring and border CSS vars
66
+ "[--btn-ring:theme(colors.purple.500)] dark:[--btn-ring:theme(colors.purple.400)] " +
67
+ "[--btn-border:theme(colors.purple.500)] dark:[--btn-border:theme(colors.purple.400)] " +
68
+ // Ensure mouse focus uses ring color too
69
+ "focus:ring-[var(--btn-ring)]",
70
+ }}
71
+ // Question text styles inherits from button
72
+ questionText={{ className: "" }}
73
+ chevronIcon={{
74
+ className: "h-6 w-6 transition-transform duration-200 flex-shrink-0",
75
+ }}
76
+ openIcon={<ChevronUp className="h-6 w-6" />}
77
+ closedIcon={<ChevronDown className="h-6 w-6" />}
78
+ answer={{
79
+ className:
80
+ "bg-gray-50 dark:bg-gray-800 text-gray-800 dark:text-white rounded-lg overflow-hidden border border-purple-200 dark:border-purple-800 shadow-md",
81
+ }}
82
+ answerText={{ className: "p-5" }}
83
+ ariaLabel="IntelliOpAI frequently asked questions"
84
+ />
85
+ );
86
+ }
@@ -1,84 +1,83 @@
1
- "use client";
2
-
3
- import { Features as SharedFeatures } from "@/components/sections/Features";
4
-
5
- /**
6
- * Product Launch preset for Features, wired to the upgraded shared Features component
7
- * using the slots + cn API. Keeps content and styles consistent with the template.
8
- */
9
- export function Features() {
10
- const featuresData = [
11
- {
12
- imageSrc: "/placeholders/product_launch/feature_1.png",
13
- imageAlt: "AI-Powered Analytics Dashboard",
14
- headingText: "Intelligent Analytics",
15
- subheadingText:
16
- "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.",
17
- },
18
- {
19
- imageSrc: "/placeholders/product_launch/feature_2.png",
20
- imageAlt: "Real-time AI Collaboration Platform",
21
- headingText: "AI-Powered Collaboration",
22
- subheadingText:
23
- "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.",
24
- },
25
- {
26
- imageSrc: "/placeholders/product_launch/feature_3.png",
27
- imageAlt: "Advanced AI Security System",
28
- headingText: "AI-Enhanced Security",
29
- subheadingText:
30
- "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.",
31
- },
32
- {
33
- imageSrc: "/placeholders/product_launch/feature_4.png",
34
- imageAlt: "Mobile AI Interface",
35
- headingText: "Smart Mobile Experience",
36
- subheadingText:
37
- "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.",
38
- },
39
- ];
40
-
41
- return (
42
- <SharedFeatures
43
- id="features"
44
- sectionHeading="AI-Powered Features"
45
- sectionSubheading="Experience the future of intelligent automation with our cutting-edge AI technology"
46
- featuresData={featuresData}
47
- section={{
48
- className: "py-20 md:py-24 lg:py-28 bg-white dark:bg-gray-900",
49
- }}
50
- container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
51
- header={{ className: "text-center mb-16" }}
52
- heading={{
53
- className:
54
- "text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
55
- }}
56
- subheading={{
57
- className:
58
- "text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-4xl mx-auto leading-relaxed font-inter",
59
- }}
60
- grid={{
61
- className:
62
- "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-4 gap-8 md:gap-10",
63
- }}
64
- card={{
65
- className:
66
- "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",
67
- }}
68
- image={{
69
- className:
70
- "object-cover transition-transform duration-300 group-hover:scale-102",
71
- }}
72
- cardHeading={{
73
- className:
74
- "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",
75
- }}
76
- cardSubheading={{
77
- className:
78
- "text-sm md:text-base text-gray-600 dark:text-gray-300 leading-relaxed font-inter",
79
- }}
80
- ariaLabel="AI-powered features for IntelliOpAI"
81
- enableMotion={true}
82
- />
83
- );
84
- }
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
- * Upgraded preset Footer for the Product Launch template wired to the upgraded shared Footer
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
+ }