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.
- package/README.md +283 -282
- package/dist/cli_manifests/blocks_manifest.json +198 -175
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +101 -100
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +105 -104
- package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +1 -1
- package/dist/kits/blocks/app/templates/aiworkflow/PresetThemeVars.tsx +58 -0
- package/dist/kits/blocks/app/templates/aiworkflow/README.md +46 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/CTA.tsx +44 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Contact.tsx +105 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +63 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Features.tsx +65 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +109 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Hero.tsx +636 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +90 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Pricing.tsx +86 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/ProcessTimeline.tsx +103 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/Testimonials.tsx +56 -0
- package/dist/kits/blocks/app/templates/aiworkflow/components/TrustBadges.tsx +59 -0
- package/dist/kits/blocks/app/templates/aiworkflow/page.tsx +43 -0
- package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
- package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -42
- 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 +84 -84
- package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -75
- package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -62
- package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -84
- package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -50
- package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
- package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -86
- package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -83
- package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
- package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -88
- package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -116
- 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 -90
- 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 -44
- package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -129
- 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 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -104
- package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -126
- package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -117
- package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
- package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -96
- 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 -195
- 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 -257
- package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
- package/dist/kits/blocks/components/sections/FAQ.tsx +214 -214
- package/dist/kits/blocks/components/sections/Features.tsx +268 -268
- 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 +236 -0
- package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
- package/dist/kits/blocks/components/sections/Navbar.tsx +350 -350
- package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -549
- 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/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 +125 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +397 -0
- package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +128 -0
- package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +127 -0
- package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +150 -0
- package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +191 -0
- package/dist/kits/blocks/components/sections/product-demo/types.ts +193 -0
- package/dist/kits/blocks/components/theme-provider.tsx +1 -1
- 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 -243
- 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 -6
- package/dist/kits/blocks/package-deps.json +3 -3
- package/package.json +1 -1
|
@@ -1,90 +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
|
-
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
|
+
"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
|
+
}
|
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { cn } from "@/lib/utils";
|
|
3
|
-
|
|
4
|
-
type Props = React.PropsWithChildren<{ className?: string }>;
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* SaaSDashboard template theme variables wrapper.
|
|
8
|
-
* Sky/blue leaning palette; adjust values to your preset branding.
|
|
9
|
-
*/
|
|
10
|
-
export function PresetThemeVars({ className, children }: Props) {
|
|
11
|
-
return (
|
|
12
|
-
<div
|
|
13
|
-
className={cn(
|
|
14
|
-
// Shared button ring
|
|
15
|
-
"[--btn-ring:theme(colors.sky.500)] dark:[--btn-ring:theme(colors.sky.400)]",
|
|
16
|
-
|
|
17
|
-
// Inputs
|
|
18
|
-
"[--input-bg:theme(colors.white)] dark:[--input-bg:theme(colors.gray.900)]",
|
|
19
|
-
"[--input-fg:theme(colors.gray.900)] dark:[--input-fg:theme(colors.gray.100)]",
|
|
20
|
-
"[--input-placeholder:theme(colors.gray.400)] dark:[--input-placeholder:theme(colors.gray.500)]",
|
|
21
|
-
"[--input-border:theme(colors.sky.200)] dark:[--input-border:theme(colors.sky.700)]",
|
|
22
|
-
"[--input-focus-ring:theme(colors.sky.500)] dark:[--input-focus-ring:theme(colors.sky.400)]",
|
|
23
|
-
"[--input-ring-offset:theme(colors.white)] dark:[--input-ring-offset:theme(colors.gray.900)]",
|
|
24
|
-
|
|
25
|
-
// Cards
|
|
26
|
-
"[--card-bg:theme(colors.white)] dark:[--card-bg:theme(colors.gray.900)]",
|
|
27
|
-
"[--card-fg:theme(colors.gray.900)] dark:[--card-fg:theme(colors.gray.100)]",
|
|
28
|
-
"[--card-title-fg:theme(colors.gray.900)] dark:[--card-title-fg:theme(colors.gray.100)]",
|
|
29
|
-
"[--card-muted-fg:theme(colors.gray.500)] dark:[--card-muted-fg:theme(colors.gray.400)]",
|
|
30
|
-
"[--card-border:theme(colors.gray.200)] dark:[--card-border:theme(colors.gray.800)]",
|
|
31
|
-
"[--card-shadow:0_6px_20px_rgba(0,0,0,0.06)]",
|
|
32
|
-
|
|
33
|
-
// Badges/Chips
|
|
34
|
-
"[--badge-bg:theme(colors.sky.50)] dark:[--badge-bg:theme(colors.sky.950)]",
|
|
35
|
-
"[--badge-fg:theme(colors.sky.700)] dark:[--badge-fg:theme(colors.sky.300)]",
|
|
36
|
-
"[--badge-border:theme(colors.sky.200)] dark:[--badge-border:theme(colors.sky.800)]",
|
|
37
|
-
"[--badge-active-bg:theme(colors.sky.600)] dark:[--badge-active-bg:theme(colors.sky.500)]",
|
|
38
|
-
"[--badge-active-fg:theme(colors.white)] dark:[--badge-active-fg:theme(colors.white)]",
|
|
39
|
-
"[--badge-active-border:theme(colors.sky.700)] dark:[--badge-active-border:theme(colors.sky.400)]",
|
|
40
|
-
|
|
41
|
-
// Headings/Subheadings
|
|
42
|
-
"[--heading-fg:theme(colors.gray.900)] dark:[--heading-fg:theme(colors.gray.100)]",
|
|
43
|
-
"[--subheading-fg:theme(colors.gray.600)] dark:[--subheading-fg:theme(colors.gray.300)]",
|
|
44
|
-
"[--description-fg:theme(colors.gray.700)] dark:[--description-fg:theme(colors.gray.200)]",
|
|
45
|
-
|
|
46
|
-
// Hero background (optional)
|
|
47
|
-
"[--hero-bg:theme(colors.white)] dark:[--hero-bg:theme(colors.slate.950)]",
|
|
48
|
-
|
|
49
|
-
// Footer
|
|
50
|
-
"[--footer-bg:transparent] dark:[--footer-bg:transparent]",
|
|
51
|
-
"[--footer-fg:theme(colors.gray.800)] dark:[--footer-fg:theme(colors.gray.100)]",
|
|
52
|
-
"[--footer-heading-fg:theme(colors.gray.900)] dark:[--footer-heading-fg:theme(colors.gray.100)]",
|
|
53
|
-
"[--footer-link-fg:theme(colors.gray.700)] dark:[--footer-link-fg:theme(colors.gray.300)]",
|
|
54
|
-
"[--footer-link-hover-fg:theme(colors.sky.700)] dark:[--footer-link-hover-fg:theme(colors.sky.400)]",
|
|
55
|
-
"[--footer-link-hover-bg:theme(colors.sky.50)] dark:[--footer-link-hover-bg:color-mix(in_oklab,oklch(0.18_0.05_235)_20%,transparent)]",
|
|
56
|
-
"[--footer-muted-fg:theme(colors.gray.500)] dark:[--footer-muted-fg:theme(colors.gray.400)]",
|
|
57
|
-
"[--footer-border:theme(colors.gray.200)] dark:[--footer-border:theme(colors.gray.800)]",
|
|
58
|
-
|
|
59
|
-
// Table (optional)
|
|
60
|
-
"[--table-fg:inherit]",
|
|
61
|
-
"[--table-muted-fg:theme(colors.gray.500)] dark:[--table-muted-fg:theme(colors.gray.400)]",
|
|
62
|
-
"[--table-head-fg:theme(colors.gray.700)] dark:[--table-head-fg:theme(colors.gray.300)]",
|
|
63
|
-
"[--table-border:theme(colors.gray.200)] dark:[--table-border:theme(colors.gray.800)]",
|
|
64
|
-
"[--table-row-hover-bg:theme(colors.gray.50)] dark:[--table-row-hover-bg:theme(colors.gray.900)]",
|
|
65
|
-
|
|
66
|
-
// FAQ specific (optional overrides; fall back to --btn-* and --card-*)
|
|
67
|
-
"[--faq-btn-bg:var(--btn-bg)] dark:[--faq-btn-bg:var(--btn-bg)]",
|
|
68
|
-
"[--faq-btn-fg:var(--btn-fg)] dark:[--faq-btn-fg:var(--btn-fg)]",
|
|
69
|
-
"[--faq-btn-hover-bg:var(--btn-hover-bg)] dark:[--faq-btn-hover-bg:var(--btn-hover-bg)]",
|
|
70
|
-
"[--faq-btn-hover-fg:var(--btn-hover-fg)] dark:[--faq-btn-hover-fg:var(--btn-hover-fg)]",
|
|
71
|
-
"[--faq-answer-bg:var(--card-bg)] dark:[--faq-answer-bg:var(--card-bg)]",
|
|
72
|
-
"[--faq-answer-fg:var(--card-fg)] dark:[--faq-answer-fg:var(--card-fg)]",
|
|
73
|
-
|
|
74
|
-
className,
|
|
75
|
-
)}
|
|
76
|
-
>
|
|
77
|
-
{children}
|
|
78
|
-
</div>
|
|
79
|
-
);
|
|
80
|
-
}
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { cn } from "@/lib/utils";
|
|
3
|
+
|
|
4
|
+
type Props = React.PropsWithChildren<{ className?: string }>;
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* SaaSDashboard template theme variables wrapper.
|
|
8
|
+
* Sky/blue leaning palette; adjust values to your preset branding.
|
|
9
|
+
*/
|
|
10
|
+
export function PresetThemeVars({ className, children }: Props) {
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
className={cn(
|
|
14
|
+
// Shared button ring
|
|
15
|
+
"[--btn-ring:theme(colors.sky.500)] dark:[--btn-ring:theme(colors.sky.400)]",
|
|
16
|
+
|
|
17
|
+
// Inputs
|
|
18
|
+
"[--input-bg:theme(colors.white)] dark:[--input-bg:theme(colors.gray.900)]",
|
|
19
|
+
"[--input-fg:theme(colors.gray.900)] dark:[--input-fg:theme(colors.gray.100)]",
|
|
20
|
+
"[--input-placeholder:theme(colors.gray.400)] dark:[--input-placeholder:theme(colors.gray.500)]",
|
|
21
|
+
"[--input-border:theme(colors.sky.200)] dark:[--input-border:theme(colors.sky.700)]",
|
|
22
|
+
"[--input-focus-ring:theme(colors.sky.500)] dark:[--input-focus-ring:theme(colors.sky.400)]",
|
|
23
|
+
"[--input-ring-offset:theme(colors.white)] dark:[--input-ring-offset:theme(colors.gray.900)]",
|
|
24
|
+
|
|
25
|
+
// Cards
|
|
26
|
+
"[--card-bg:theme(colors.white)] dark:[--card-bg:theme(colors.gray.900)]",
|
|
27
|
+
"[--card-fg:theme(colors.gray.900)] dark:[--card-fg:theme(colors.gray.100)]",
|
|
28
|
+
"[--card-title-fg:theme(colors.gray.900)] dark:[--card-title-fg:theme(colors.gray.100)]",
|
|
29
|
+
"[--card-muted-fg:theme(colors.gray.500)] dark:[--card-muted-fg:theme(colors.gray.400)]",
|
|
30
|
+
"[--card-border:theme(colors.gray.200)] dark:[--card-border:theme(colors.gray.800)]",
|
|
31
|
+
"[--card-shadow:0_6px_20px_rgba(0,0,0,0.06)]",
|
|
32
|
+
|
|
33
|
+
// Badges/Chips
|
|
34
|
+
"[--badge-bg:theme(colors.sky.50)] dark:[--badge-bg:theme(colors.sky.950)]",
|
|
35
|
+
"[--badge-fg:theme(colors.sky.700)] dark:[--badge-fg:theme(colors.sky.300)]",
|
|
36
|
+
"[--badge-border:theme(colors.sky.200)] dark:[--badge-border:theme(colors.sky.800)]",
|
|
37
|
+
"[--badge-active-bg:theme(colors.sky.600)] dark:[--badge-active-bg:theme(colors.sky.500)]",
|
|
38
|
+
"[--badge-active-fg:theme(colors.white)] dark:[--badge-active-fg:theme(colors.white)]",
|
|
39
|
+
"[--badge-active-border:theme(colors.sky.700)] dark:[--badge-active-border:theme(colors.sky.400)]",
|
|
40
|
+
|
|
41
|
+
// Headings/Subheadings
|
|
42
|
+
"[--heading-fg:theme(colors.gray.900)] dark:[--heading-fg:theme(colors.gray.100)]",
|
|
43
|
+
"[--subheading-fg:theme(colors.gray.600)] dark:[--subheading-fg:theme(colors.gray.300)]",
|
|
44
|
+
"[--description-fg:theme(colors.gray.700)] dark:[--description-fg:theme(colors.gray.200)]",
|
|
45
|
+
|
|
46
|
+
// Hero background (optional)
|
|
47
|
+
"[--hero-bg:theme(colors.white)] dark:[--hero-bg:theme(colors.slate.950)]",
|
|
48
|
+
|
|
49
|
+
// Footer
|
|
50
|
+
"[--footer-bg:transparent] dark:[--footer-bg:transparent]",
|
|
51
|
+
"[--footer-fg:theme(colors.gray.800)] dark:[--footer-fg:theme(colors.gray.100)]",
|
|
52
|
+
"[--footer-heading-fg:theme(colors.gray.900)] dark:[--footer-heading-fg:theme(colors.gray.100)]",
|
|
53
|
+
"[--footer-link-fg:theme(colors.gray.700)] dark:[--footer-link-fg:theme(colors.gray.300)]",
|
|
54
|
+
"[--footer-link-hover-fg:theme(colors.sky.700)] dark:[--footer-link-hover-fg:theme(colors.sky.400)]",
|
|
55
|
+
"[--footer-link-hover-bg:theme(colors.sky.50)] dark:[--footer-link-hover-bg:color-mix(in_oklab,oklch(0.18_0.05_235)_20%,transparent)]",
|
|
56
|
+
"[--footer-muted-fg:theme(colors.gray.500)] dark:[--footer-muted-fg:theme(colors.gray.400)]",
|
|
57
|
+
"[--footer-border:theme(colors.gray.200)] dark:[--footer-border:theme(colors.gray.800)]",
|
|
58
|
+
|
|
59
|
+
// Table (optional)
|
|
60
|
+
"[--table-fg:inherit]",
|
|
61
|
+
"[--table-muted-fg:theme(colors.gray.500)] dark:[--table-muted-fg:theme(colors.gray.400)]",
|
|
62
|
+
"[--table-head-fg:theme(colors.gray.700)] dark:[--table-head-fg:theme(colors.gray.300)]",
|
|
63
|
+
"[--table-border:theme(colors.gray.200)] dark:[--table-border:theme(colors.gray.800)]",
|
|
64
|
+
"[--table-row-hover-bg:theme(colors.gray.50)] dark:[--table-row-hover-bg:theme(colors.gray.900)]",
|
|
65
|
+
|
|
66
|
+
// FAQ specific (optional overrides; fall back to --btn-* and --card-*)
|
|
67
|
+
"[--faq-btn-bg:var(--btn-bg)] dark:[--faq-btn-bg:var(--btn-bg)]",
|
|
68
|
+
"[--faq-btn-fg:var(--btn-fg)] dark:[--faq-btn-fg:var(--btn-fg)]",
|
|
69
|
+
"[--faq-btn-hover-bg:var(--btn-hover-bg)] dark:[--faq-btn-hover-bg:var(--btn-hover-bg)]",
|
|
70
|
+
"[--faq-btn-hover-fg:var(--btn-hover-fg)] dark:[--faq-btn-hover-fg:var(--btn-hover-fg)]",
|
|
71
|
+
"[--faq-answer-bg:var(--card-bg)] dark:[--faq-answer-bg:var(--card-bg)]",
|
|
72
|
+
"[--faq-answer-fg:var(--card-fg)] dark:[--faq-answer-fg:var(--card-fg)]",
|
|
73
|
+
|
|
74
|
+
className,
|
|
75
|
+
)}
|
|
76
|
+
>
|
|
77
|
+
{children}
|
|
78
|
+
</div>
|
|
79
|
+
);
|
|
80
|
+
}
|