nextworks 0.2.0-alpha.2 → 0.2.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +280 -228
- package/dist/cli_manifests/blocks_manifest.json +193 -194
- package/dist/commands/blocks.d.ts +3 -0
- package/dist/commands/blocks.d.ts.map +1 -1
- package/dist/commands/blocks.js +128 -19
- package/dist/commands/blocks.js.map +1 -1
- package/dist/commands/doctor.d.ts +136 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +696 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/remove-blocks.d.ts +4 -1
- package/dist/commands/remove-blocks.d.ts.map +1 -1
- package/dist/commands/remove-blocks.js +24 -6
- package/dist/commands/remove-blocks.js.map +1 -1
- package/dist/index.js +125 -4
- package/dist/index.js.map +1 -1
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +104 -194
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +115 -75
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +269 -251
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -36
- package/dist/kits/blocks/app/templates/digitalagency/components/About.tsx +71 -99
- package/dist/kits/blocks/app/templates/digitalagency/components/CTA.tsx +40 -74
- package/dist/kits/blocks/app/templates/digitalagency/components/Contact.tsx +123 -227
- package/dist/kits/blocks/app/templates/digitalagency/components/Footer.tsx +89 -89
- package/dist/kits/blocks/app/templates/digitalagency/components/Hero.tsx +83 -90
- package/dist/kits/blocks/app/templates/digitalagency/components/Navbar.tsx +121 -168
- package/dist/kits/blocks/app/templates/digitalagency/components/NetworkPattern.tsx +288 -297
- package/dist/kits/blocks/app/templates/digitalagency/components/Portfolio.tsx +157 -157
- package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
- package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
- package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
- package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
- package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
- package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
- package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +130 -85
- package/dist/kits/blocks/app/templates/gallery/page.tsx +357 -303
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -74
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -55
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -178
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -93
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -162
- package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
- package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
- package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
- package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
- package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -89
- package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
- package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
- package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -38
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -176
- package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
- package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
- package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -91
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -105
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -127
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -159
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -97
- package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
- package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
- package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
- package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -183
- package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
- package/dist/kits/blocks/components/sections/About.tsx +291 -291
- package/dist/kits/blocks/components/sections/CTA.tsx +257 -258
- package/dist/kits/blocks/components/sections/CommandShowcase.tsx +517 -0
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -225
- package/dist/kits/blocks/components/sections/FeaturedProjectShowcase.tsx +687 -0
- package/dist/kits/blocks/components/sections/Features.tsx +268 -270
- package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
- package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
- package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
- package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +246 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/HeroWithVideo.tsx +495 -0
- package/dist/kits/blocks/components/sections/Navbar.tsx +352 -353
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -550
- package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
- package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
- package/dist/kits/blocks/components/sections/ProjectDeepDive.tsx +805 -0
- package/dist/kits/blocks/components/sections/SelectedWorkRail.tsx +485 -0
- package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
- package/dist/kits/blocks/components/sections/Team.tsx +309 -309
- package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
- package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
- package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +519 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +140 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +130 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +430 -0
- package/dist/kits/blocks/components/sections/product-demo/TaskListPanel.tsx +302 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +744 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +262 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -34
- package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
- package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
- package/dist/kits/blocks/components/ui/button.tsx +122 -122
- package/dist/kits/blocks/components/ui/card.tsx +95 -95
- package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
- package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
- package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
- package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
- package/dist/kits/blocks/components/ui/input.tsx +27 -27
- package/dist/kits/blocks/components/ui/label.tsx +29 -29
- package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
- package/dist/kits/blocks/components/ui/select.tsx +25 -25
- package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
- package/dist/kits/blocks/components/ui/table.tsx +98 -98
- package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
- package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
- package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -247
- package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
- package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
- package/dist/kits/blocks/lib/themes.ts +400 -400
- package/dist/kits/blocks/lib/utils.ts +6 -9
- package/dist/kits/blocks/package-deps.json +40 -28
- package/dist/kits/blocks/tsconfig.json +11 -0
- package/dist/kits/blocks/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/file-operations.d.ts +3 -1
- package/dist/utils/file-operations.d.ts.map +1 -1
- package/dist/utils/file-operations.js +84 -12
- package/dist/utils/file-operations.js.map +1 -1
- package/dist/utils/installation-tracker.d.ts +2 -2
- package/dist/utils/installation-tracker.d.ts.map +1 -1
- package/dist/utils/installation-tracker.js +11 -11
- package/dist/utils/installation-tracker.js.map +1 -1
- package/dist/utils/package-manager.d.ts +6 -0
- package/dist/utils/package-manager.d.ts.map +1 -0
- package/dist/utils/package-manager.js +58 -0
- package/dist/utils/package-manager.js.map +1 -0
- package/dist/utils/yarn-pnp.d.ts +6 -0
- package/dist/utils/yarn-pnp.d.ts.map +1 -0
- package/dist/utils/yarn-pnp.js +39 -0
- package/dist/utils/yarn-pnp.js.map +1 -0
- package/package.json +5 -2
- package/dist/kits/blocks/notes/THEME_GUIDE.md +0 -29
|
@@ -1,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
|
+
}
|
|
@@ -1,89 +1,90 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Testimonials as SharedTestimonials } from "@/components/sections/Testimonials";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for Testimonials
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { Testimonials as SharedTestimonials } from "@/components/sections/Testimonials";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for Testimonials
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
export function Testimonials() {
|
|
10
|
+
const testimonials = [
|
|
11
|
+
{
|
|
12
|
+
testimonialText:
|
|
13
|
+
"IntelliOpAI has completely transformed our workflow. The AI-powered automation saves us 40+ hours per week, and the accuracy is incredible.",
|
|
14
|
+
testimonialAuthor: " - Sarah Johnson, CEO at TechCorp",
|
|
15
|
+
testimonialAuthorInitials: "SJ",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
testimonialText:
|
|
19
|
+
"The machine learning capabilities are outstanding. We've seen a 300% increase in productivity since implementing their AI solutions.",
|
|
20
|
+
testimonialAuthor: " - Michael Chen, CTO at InnovateLab",
|
|
21
|
+
testimonialAuthorInitials: "MC",
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
testimonialText:
|
|
25
|
+
"Game-changing technology! The AI insights have helped us make better decisions and scale our business faster than ever before.",
|
|
26
|
+
testimonialAuthor: " - Emily Rodriguez, VP Operations at GrowthCo",
|
|
27
|
+
testimonialAuthorInitials: "ER",
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
testimonialText:
|
|
31
|
+
"The implementation was seamless and the results exceeded our expectations. Our team loves working with the AI-powered tools.",
|
|
32
|
+
testimonialAuthor: " - David Kim, Head of Engineering at StartupXYZ",
|
|
33
|
+
testimonialAuthorInitials: "DK",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
testimonialText:
|
|
37
|
+
"IntelliOpAI's natural language processing capabilities have revolutionized how we handle customer support. Response times improved by 80%.",
|
|
38
|
+
testimonialAuthor:
|
|
39
|
+
" - Lisa Wang, Customer Success Director at ServicePro",
|
|
40
|
+
testimonialAuthorInitials: "LW",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
testimonialText:
|
|
44
|
+
"The predictive analytics features are phenomenal. We can now forecast trends and make data-driven decisions with confidence.",
|
|
45
|
+
testimonialAuthor:
|
|
46
|
+
" - James Thompson, Data Science Lead at AnalyticsPlus",
|
|
47
|
+
testimonialAuthorInitials: "JT",
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
return (
|
|
52
|
+
<SharedTestimonials
|
|
53
|
+
id="testimonials"
|
|
54
|
+
testimonials={testimonials}
|
|
55
|
+
testimonialSectionHeader="What Our AI Customers Say"
|
|
56
|
+
section={{
|
|
57
|
+
className: "py-20 md:py-24 lg:py-28 bg-gray-50 dark:bg-gray-900",
|
|
58
|
+
}}
|
|
59
|
+
container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
|
|
60
|
+
header={{ className: "text-center mb-16" }}
|
|
61
|
+
heading={{
|
|
62
|
+
className:
|
|
63
|
+
"text-3xl md:text-4xl lg:text-5xl font-bold text-gray-800 dark:text-white text-center font-outfit",
|
|
64
|
+
}}
|
|
65
|
+
grid={{
|
|
66
|
+
className:
|
|
67
|
+
"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 md:gap-10",
|
|
68
|
+
}}
|
|
69
|
+
card={{
|
|
70
|
+
className:
|
|
71
|
+
"bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl hover:shadow-purple-500/10 group border border-gray-200 dark:border-gray-700 hover:border-purple-300 dark:hover:border-purple-600",
|
|
72
|
+
}}
|
|
73
|
+
content={{ className: "flex flex-col space-y-6" }}
|
|
74
|
+
text={{
|
|
75
|
+
className:
|
|
76
|
+
"text-gray-700 dark:text-gray-300 text-base md:text-lg leading-relaxed italic font-inter group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-300",
|
|
77
|
+
}}
|
|
78
|
+
author={{
|
|
79
|
+
className:
|
|
80
|
+
"text-gray-600 dark:text-gray-400 text-sm md:text-base font-medium font-inter",
|
|
81
|
+
}}
|
|
82
|
+
avatar={{
|
|
83
|
+
className:
|
|
84
|
+
"w-16 h-16 bg-gradient-to-br from-purple-600 to-purple-700 text-white rounded-full flex items-center justify-center text-xl font-bold shadow-lg group-hover:scale-110 transition-transform duration-300",
|
|
85
|
+
}}
|
|
86
|
+
avatarText={{ className: "text-white font-bold" }}
|
|
87
|
+
ariaLabel="Customer testimonials for IntelliOpAI"
|
|
88
|
+
/>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { TrustBadges as SharedTrustBadges } from "@/components/sections/TrustBadges";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for TrustBadges
|
|
7
|
-
*/
|
|
8
|
-
export function TrustBadges() {
|
|
9
|
-
const badges = [
|
|
10
|
-
{
|
|
11
|
-
badgeText: "50,000+ AI Models",
|
|
12
|
-
badgeDescription: "Powered by",
|
|
13
|
-
badgeIcon: "🤖",
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
badgeText: "99.9% Accuracy",
|
|
17
|
-
badgeDescription: "AI Performance",
|
|
18
|
-
badgeIcon: "🎯",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
badgeText: "SOC 2 Type II",
|
|
22
|
-
badgeDescription: "Enterprise Security",
|
|
23
|
-
badgeIcon: "🔒",
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
badgeText: "24/7 Support",
|
|
27
|
-
badgeDescription: "Always Available",
|
|
28
|
-
badgeIcon: "⚡",
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
badgeText: "Fortune 500",
|
|
32
|
-
badgeDescription: "Trusted by",
|
|
33
|
-
badgeIcon: "🏆",
|
|
34
|
-
},
|
|
35
|
-
];
|
|
36
|
-
|
|
37
|
-
return (
|
|
38
|
-
<SharedTrustBadges
|
|
39
|
-
id="trust-badges"
|
|
40
|
-
badges={badges}
|
|
41
|
-
trustBadgesSectionHeader="Trusted by Industry Leaders"
|
|
42
|
-
section={{
|
|
43
|
-
className:
|
|
44
|
-
"py-12 md:py-16 bg-gradient-to-r from-gray-50 to-white dark:from-gray-900 dark:to-gray-800 border-t border-b border-gray-200 dark:border-gray-700",
|
|
45
|
-
}}
|
|
46
|
-
container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
|
|
47
|
-
header={{ className: "text-center mb-12" }}
|
|
48
|
-
heading={{
|
|
49
|
-
className:
|
|
50
|
-
"text-xl md:text-2xl lg:text-3xl font-bold text-gray-800 dark:text-white font-outfit",
|
|
51
|
-
}}
|
|
52
|
-
badgesContainer={{
|
|
53
|
-
className:
|
|
54
|
-
"flex flex-col sm:flex-row justify-center items-center gap-8 md:gap-12 lg:gap-16 flex-wrap",
|
|
55
|
-
}}
|
|
56
|
-
badge={{
|
|
57
|
-
className: "flex flex-col items-center text-center min-w-[180px] group",
|
|
58
|
-
}}
|
|
59
|
-
badgeContent={{ className: "flex flex-col items-center space-y-3" }}
|
|
60
|
-
icon={{
|
|
61
|
-
className:
|
|
62
|
-
"text-3xl md:text-4xl mb-3 group-hover:scale-105 transition-transform duration-500 ease-out",
|
|
63
|
-
}}
|
|
64
|
-
description={{
|
|
65
|
-
className:
|
|
66
|
-
"text-xs md:text-sm font-medium text-gray-600 dark:text-gray-400 group-hover:text-purple-500 dark:group-hover:text-purple-400 transition-colors duration-500 ease-out",
|
|
67
|
-
}}
|
|
68
|
-
text={{
|
|
69
|
-
className:
|
|
70
|
-
"text-base md:text-lg font-bold text-gray-900 dark:text-white group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-500 ease-out font-outfit",
|
|
71
|
-
}}
|
|
72
|
-
layout="horizontal"
|
|
73
|
-
ariaLabel="Trust badges for IntelliOpAI"
|
|
74
|
-
/>
|
|
75
|
-
);
|
|
76
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { TrustBadges as SharedTrustBadges } from "@/components/sections/TrustBadges";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for TrustBadges
|
|
7
|
+
*/
|
|
8
|
+
export function TrustBadges() {
|
|
9
|
+
const badges = [
|
|
10
|
+
{
|
|
11
|
+
badgeText: "50,000+ AI Models",
|
|
12
|
+
badgeDescription: "Powered by",
|
|
13
|
+
badgeIcon: "🤖",
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
badgeText: "99.9% Accuracy",
|
|
17
|
+
badgeDescription: "AI Performance",
|
|
18
|
+
badgeIcon: "🎯",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
badgeText: "SOC 2 Type II",
|
|
22
|
+
badgeDescription: "Enterprise Security",
|
|
23
|
+
badgeIcon: "🔒",
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
badgeText: "24/7 Support",
|
|
27
|
+
badgeDescription: "Always Available",
|
|
28
|
+
badgeIcon: "⚡",
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
badgeText: "Fortune 500",
|
|
32
|
+
badgeDescription: "Trusted by",
|
|
33
|
+
badgeIcon: "🏆",
|
|
34
|
+
},
|
|
35
|
+
];
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<SharedTrustBadges
|
|
39
|
+
id="trust-badges"
|
|
40
|
+
badges={badges}
|
|
41
|
+
trustBadgesSectionHeader="Trusted by Industry Leaders"
|
|
42
|
+
section={{
|
|
43
|
+
className:
|
|
44
|
+
"py-12 md:py-16 bg-gradient-to-r from-gray-50 to-white dark:from-gray-900 dark:to-gray-800 border-t border-b border-gray-200 dark:border-gray-700",
|
|
45
|
+
}}
|
|
46
|
+
container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-12" }}
|
|
47
|
+
header={{ className: "text-center mb-12" }}
|
|
48
|
+
heading={{
|
|
49
|
+
className:
|
|
50
|
+
"text-xl md:text-2xl lg:text-3xl font-bold text-gray-800 dark:text-white font-outfit",
|
|
51
|
+
}}
|
|
52
|
+
badgesContainer={{
|
|
53
|
+
className:
|
|
54
|
+
"flex flex-col sm:flex-row justify-center items-center gap-8 md:gap-12 lg:gap-16 flex-wrap",
|
|
55
|
+
}}
|
|
56
|
+
badge={{
|
|
57
|
+
className: "flex flex-col items-center text-center min-w-[180px] group",
|
|
58
|
+
}}
|
|
59
|
+
badgeContent={{ className: "flex flex-col items-center space-y-3" }}
|
|
60
|
+
icon={{
|
|
61
|
+
className:
|
|
62
|
+
"text-3xl md:text-4xl mb-3 group-hover:scale-105 transition-transform duration-500 ease-out",
|
|
63
|
+
}}
|
|
64
|
+
description={{
|
|
65
|
+
className:
|
|
66
|
+
"text-xs md:text-sm font-medium text-gray-600 dark:text-gray-400 group-hover:text-purple-500 dark:group-hover:text-purple-400 transition-colors duration-500 ease-out",
|
|
67
|
+
}}
|
|
68
|
+
text={{
|
|
69
|
+
className:
|
|
70
|
+
"text-base md:text-lg font-bold text-gray-900 dark:text-white group-hover:text-purple-600 dark:group-hover:text-purple-400 transition-colors duration-500 ease-out font-outfit",
|
|
71
|
+
}}
|
|
72
|
+
layout="horizontal"
|
|
73
|
+
ariaLabel="Trust badges for IntelliOpAI"
|
|
74
|
+
/>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import { Navbar } from "./components/Navbar";
|
|
2
|
-
import { CTA } from "./components/CTA";
|
|
3
|
-
import { Hero } from "./components/Hero";
|
|
4
|
-
import { About } from "./components/About";
|
|
5
|
-
import { Pricing } from "./components/Pricing";
|
|
6
|
-
import { ProcessTimeline } from "./components/ProcessTimeline";
|
|
7
|
-
import { FAQ } from "./components/FAQ";
|
|
8
|
-
import { Contact } from "./components/Contact";
|
|
9
|
-
import { Footer } from "./components/Footer";
|
|
10
|
-
import { Testimonials } from "./components/Testimonials";
|
|
11
|
-
import { TrustBadges } from "./components/TrustBadges";
|
|
12
|
-
import { Features } from "./components/Features";
|
|
13
|
-
|
|
14
|
-
export default function ProductLaunchPage() {
|
|
15
|
-
return (
|
|
16
|
-
// <PresetThemeVars>
|
|
17
|
-
<>
|
|
18
|
-
<Navbar />
|
|
19
|
-
<section id="home">
|
|
20
|
-
<Hero />
|
|
21
|
-
</section>
|
|
22
|
-
<TrustBadges />
|
|
23
|
-
<About />
|
|
24
|
-
<section id="features">
|
|
25
|
-
<Features />
|
|
26
|
-
<ProcessTimeline />
|
|
27
|
-
</section>
|
|
28
|
-
<Testimonials />
|
|
29
|
-
<CTA />
|
|
30
|
-
<section id="pricing">
|
|
31
|
-
<Pricing />
|
|
32
|
-
</section>
|
|
33
|
-
<section id="faq">
|
|
34
|
-
<FAQ />
|
|
35
|
-
</section>
|
|
36
|
-
<section id="contact">
|
|
37
|
-
<Contact />
|
|
38
|
-
</section>
|
|
39
|
-
<Footer />
|
|
40
|
-
</>
|
|
41
|
-
// </PresetThemeVars>
|
|
42
|
-
);
|
|
43
|
-
}
|
|
1
|
+
import { Navbar } from "./components/Navbar";
|
|
2
|
+
import { CTA } from "./components/CTA";
|
|
3
|
+
import { Hero } from "./components/Hero";
|
|
4
|
+
import { About } from "./components/About";
|
|
5
|
+
import { Pricing } from "./components/Pricing";
|
|
6
|
+
import { ProcessTimeline } from "./components/ProcessTimeline";
|
|
7
|
+
import { FAQ } from "./components/FAQ";
|
|
8
|
+
import { Contact } from "./components/Contact";
|
|
9
|
+
import { Footer } from "./components/Footer";
|
|
10
|
+
import { Testimonials } from "./components/Testimonials";
|
|
11
|
+
import { TrustBadges } from "./components/TrustBadges";
|
|
12
|
+
import { Features } from "./components/Features";
|
|
13
|
+
|
|
14
|
+
export default function ProductLaunchPage() {
|
|
15
|
+
return (
|
|
16
|
+
// <PresetThemeVars>
|
|
17
|
+
<>
|
|
18
|
+
<Navbar />
|
|
19
|
+
<section id="home">
|
|
20
|
+
<Hero />
|
|
21
|
+
</section>
|
|
22
|
+
<TrustBadges />
|
|
23
|
+
<About />
|
|
24
|
+
<section id="features">
|
|
25
|
+
<Features />
|
|
26
|
+
<ProcessTimeline />
|
|
27
|
+
</section>
|
|
28
|
+
<Testimonials />
|
|
29
|
+
<CTA />
|
|
30
|
+
<section id="pricing">
|
|
31
|
+
<Pricing />
|
|
32
|
+
</section>
|
|
33
|
+
<section id="faq">
|
|
34
|
+
<FAQ />
|
|
35
|
+
</section>
|
|
36
|
+
<section id="contact">
|
|
37
|
+
<Contact />
|
|
38
|
+
</section>
|
|
39
|
+
<Footer />
|
|
40
|
+
</>
|
|
41
|
+
// </PresetThemeVars>
|
|
42
|
+
);
|
|
43
|
+
}
|