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,116 +1,116 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import type { ComponentProps } from "react";
|
|
4
|
-
import { Navbar as SharedNavbar } from "@/components/sections/Navbar";
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Product Launch preset Navbar
|
|
8
|
-
*
|
|
9
|
-
* - IntelliOpAI branding with purple color scheme
|
|
10
|
-
* - Custom font families (Outfit for brand, Inter for links)
|
|
11
|
-
* - No CTA button (ctaButton = null)
|
|
12
|
-
* - Purple hover states for links and theme toggle
|
|
13
|
-
* - Clean white background with dark mode support
|
|
14
|
-
*
|
|
15
|
-
* This preset exposes the Shared Navbar API, allowing full customization of any prop or slot.
|
|
16
|
-
*
|
|
17
|
-
* Example:
|
|
18
|
-
* <Navbar
|
|
19
|
-
* brand="My Brand"
|
|
20
|
-
* links={{ className: "hover:text-emerald-600" }}
|
|
21
|
-
* container={{ className: "max-w-6xl mx-auto" }}
|
|
22
|
-
* />
|
|
23
|
-
*/
|
|
24
|
-
type SharedNavbarProps = ComponentProps<typeof SharedNavbar>;
|
|
25
|
-
type PresetOverrides = Partial<SharedNavbarProps>;
|
|
26
|
-
|
|
27
|
-
const defaultProps: SharedNavbarProps = {
|
|
28
|
-
brand: "IntelliOpAI",
|
|
29
|
-
menuItems: [
|
|
30
|
-
{ label: "Home", href: "#home" },
|
|
31
|
-
{ label: "Features", href: "#features" },
|
|
32
|
-
{ label: "Pricing", href: "#pricing" },
|
|
33
|
-
{ label: "FAQ", href: "#faq" },
|
|
34
|
-
{ label: "Contact", href: "#contact" },
|
|
35
|
-
],
|
|
36
|
-
ctaButton: null,
|
|
37
|
-
showColorModeToggle: true,
|
|
38
|
-
navHeight: "h-16",
|
|
39
|
-
sticky: true,
|
|
40
|
-
ariaLabel: "IntelliOpAI main navigation",
|
|
41
|
-
// Top-level className is left empty so page-level overrides can add layout constraints if needed.
|
|
42
|
-
className: "",
|
|
43
|
-
// Style slots tuned for the purple theme
|
|
44
|
-
nav: {
|
|
45
|
-
className:
|
|
46
|
-
"bg-white dark:bg-gray-900 text-gray-800 dark:text-white border-b border-gray-200 dark:border-gray-800 " +
|
|
47
|
-
// Accent variables for this preset (read by toggle, links, mobile links)
|
|
48
|
-
"[--navbar-accent:theme(colors.purple.600)] dark:[--navbar-accent:theme(colors.purple.400)] " +
|
|
49
|
-
"[--navbar-toggle-bg:theme(colors.white)] dark:[--navbar-toggle-bg:theme(colors.gray.900)] " +
|
|
50
|
-
"[--navbar-hover-bg:theme(colors.purple.50)] dark:[--navbar-hover-bg:color-mix(in oklab,oklch(0.17 0.05 324) 20%, transparent)] " +
|
|
51
|
-
"[--navbar-ring:theme(colors.purple.500)] dark:[--navbar-ring:theme(colors.purple.400)] " +
|
|
52
|
-
"[--navbar-border:theme(colors.gray.200)] dark:[--navbar-border:theme(colors.gray.800)]",
|
|
53
|
-
},
|
|
54
|
-
brandText: {
|
|
55
|
-
className:
|
|
56
|
-
"text-xl md:text-2xl font-bold font-outfit text-purple-700 dark:text-purple-500",
|
|
57
|
-
},
|
|
58
|
-
links: {
|
|
59
|
-
className:
|
|
60
|
-
"text-sm font-medium font-inter text-gray-800 dark:text-white hover:text-purple-700 dark:hover:text-purple-500 " +
|
|
61
|
-
"focus:ring-[var(--navbar-ring)]",
|
|
62
|
-
},
|
|
63
|
-
// Preset keeps CTA hidden; if enabled, these defaults give a subtle lift effect
|
|
64
|
-
ctaButtonStyle: {
|
|
65
|
-
variant: "default",
|
|
66
|
-
size: "default",
|
|
67
|
-
className:
|
|
68
|
-
"shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5",
|
|
69
|
-
},
|
|
70
|
-
mobileMenu: {
|
|
71
|
-
className: "border-t border-gray-200 dark:border-gray-800",
|
|
72
|
-
},
|
|
73
|
-
container: {
|
|
74
|
-
className: "max-w-7xl mx-auto",
|
|
75
|
-
},
|
|
76
|
-
brandWrapper: {
|
|
77
|
-
className: "", // Base layout is provided by SharedNavbar; override here if needed
|
|
78
|
-
},
|
|
79
|
-
desktopMenu: {
|
|
80
|
-
className: "hidden items-center space-x-1 md:flex lg:space-x-6",
|
|
81
|
-
},
|
|
82
|
-
toggleButton: {
|
|
83
|
-
className:
|
|
84
|
-
"md:hidden flex items-center justify-center rounded-md p-2 transition-colors " +
|
|
85
|
-
"hover:bg-purple-50 dark:hover:bg-purple-900/20 " +
|
|
86
|
-
"focus:outline-none focus:ring-2 focus:ring-purple-500 dark:focus:ring-purple-400",
|
|
87
|
-
},
|
|
88
|
-
colorModeWrapper: {
|
|
89
|
-
className: "ml-2",
|
|
90
|
-
},
|
|
91
|
-
// ThemeToggle reads the CSS vars defined in `nav.className`; override via `themeToggle` if needed.
|
|
92
|
-
// themeToggle: { ... }
|
|
93
|
-
ctaButtonWrapper: {
|
|
94
|
-
className: "ml-2",
|
|
95
|
-
},
|
|
96
|
-
mobileMenuInner: {
|
|
97
|
-
className: "space-y-2 px-4 pt-2 pb-4",
|
|
98
|
-
},
|
|
99
|
-
// Mobile menu links get their hover background from the `--navbar-hover-bg` CSS variable
|
|
100
|
-
// (set on the `nav` slot above). This class simply applies that variable on `:hover`, and can be
|
|
101
|
-
// removed/overridden if a different mobile-link hover treatment is preferable.
|
|
102
|
-
mobileLinks: {
|
|
103
|
-
className: "hover:bg-[var(--navbar-hover-bg)]",
|
|
104
|
-
},
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
export function Navbar(overrides: PresetOverrides = {}) {
|
|
108
|
-
// Shallow-merge: passing a style-slot object (e.g., links, nav, etc.)
|
|
109
|
-
// replaces the default for that slot.
|
|
110
|
-
const props: SharedNavbarProps = {
|
|
111
|
-
...defaultProps,
|
|
112
|
-
...overrides,
|
|
113
|
-
};
|
|
114
|
-
|
|
115
|
-
return <SharedNavbar {...props} />;
|
|
116
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type { ComponentProps } from "react";
|
|
4
|
+
import { Navbar as SharedNavbar } from "@/components/sections/Navbar";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Product Launch preset Navbar
|
|
8
|
+
*
|
|
9
|
+
* - IntelliOpAI branding with purple color scheme
|
|
10
|
+
* - Custom font families (Outfit for brand, Inter for links)
|
|
11
|
+
* - No CTA button (ctaButton = null)
|
|
12
|
+
* - Purple hover states for links and theme toggle
|
|
13
|
+
* - Clean white background with dark mode support
|
|
14
|
+
*
|
|
15
|
+
* This preset exposes the Shared Navbar API, allowing full customization of any prop or slot.
|
|
16
|
+
*
|
|
17
|
+
* Example:
|
|
18
|
+
* <Navbar
|
|
19
|
+
* brand="My Brand"
|
|
20
|
+
* links={{ className: "hover:text-emerald-600" }}
|
|
21
|
+
* container={{ className: "max-w-6xl mx-auto" }}
|
|
22
|
+
* />
|
|
23
|
+
*/
|
|
24
|
+
type SharedNavbarProps = ComponentProps<typeof SharedNavbar>;
|
|
25
|
+
type PresetOverrides = Partial<SharedNavbarProps>;
|
|
26
|
+
|
|
27
|
+
const defaultProps: SharedNavbarProps = {
|
|
28
|
+
brand: "IntelliOpAI",
|
|
29
|
+
menuItems: [
|
|
30
|
+
{ label: "Home", href: "#home" },
|
|
31
|
+
{ label: "Features", href: "#features" },
|
|
32
|
+
{ label: "Pricing", href: "#pricing" },
|
|
33
|
+
{ label: "FAQ", href: "#faq" },
|
|
34
|
+
{ label: "Contact", href: "#contact" },
|
|
35
|
+
],
|
|
36
|
+
ctaButton: null,
|
|
37
|
+
showColorModeToggle: true,
|
|
38
|
+
navHeight: "h-16",
|
|
39
|
+
sticky: true,
|
|
40
|
+
ariaLabel: "IntelliOpAI main navigation",
|
|
41
|
+
// Top-level className is left empty so page-level overrides can add layout constraints if needed.
|
|
42
|
+
className: "",
|
|
43
|
+
// Style slots tuned for the purple theme
|
|
44
|
+
nav: {
|
|
45
|
+
className:
|
|
46
|
+
"bg-white dark:bg-gray-900 text-gray-800 dark:text-white border-b border-gray-200 dark:border-gray-800 " +
|
|
47
|
+
// Accent variables for this preset (read by toggle, links, mobile links)
|
|
48
|
+
"[--navbar-accent:theme(colors.purple.600)] dark:[--navbar-accent:theme(colors.purple.400)] " +
|
|
49
|
+
"[--navbar-toggle-bg:theme(colors.white)] dark:[--navbar-toggle-bg:theme(colors.gray.900)] " +
|
|
50
|
+
"[--navbar-hover-bg:theme(colors.purple.50)] dark:[--navbar-hover-bg:color-mix(in oklab,oklch(0.17 0.05 324) 20%, transparent)] " +
|
|
51
|
+
"[--navbar-ring:theme(colors.purple.500)] dark:[--navbar-ring:theme(colors.purple.400)] " +
|
|
52
|
+
"[--navbar-border:theme(colors.gray.200)] dark:[--navbar-border:theme(colors.gray.800)]",
|
|
53
|
+
},
|
|
54
|
+
brandText: {
|
|
55
|
+
className:
|
|
56
|
+
"text-xl md:text-2xl font-bold font-outfit text-purple-700 dark:text-purple-500",
|
|
57
|
+
},
|
|
58
|
+
links: {
|
|
59
|
+
className:
|
|
60
|
+
"text-sm font-medium font-inter text-gray-800 dark:text-white hover:text-purple-700 dark:hover:text-purple-500 " +
|
|
61
|
+
"focus:ring-[var(--navbar-ring)]",
|
|
62
|
+
},
|
|
63
|
+
// Preset keeps CTA hidden; if enabled, these defaults give a subtle lift effect
|
|
64
|
+
ctaButtonStyle: {
|
|
65
|
+
variant: "default",
|
|
66
|
+
size: "default",
|
|
67
|
+
className:
|
|
68
|
+
"shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5",
|
|
69
|
+
},
|
|
70
|
+
mobileMenu: {
|
|
71
|
+
className: "border-t border-gray-200 dark:border-gray-800",
|
|
72
|
+
},
|
|
73
|
+
container: {
|
|
74
|
+
className: "max-w-7xl mx-auto",
|
|
75
|
+
},
|
|
76
|
+
brandWrapper: {
|
|
77
|
+
className: "", // Base layout is provided by SharedNavbar; override here if needed
|
|
78
|
+
},
|
|
79
|
+
desktopMenu: {
|
|
80
|
+
className: "hidden items-center space-x-1 md:flex lg:space-x-6",
|
|
81
|
+
},
|
|
82
|
+
toggleButton: {
|
|
83
|
+
className:
|
|
84
|
+
"md:hidden flex items-center justify-center rounded-md p-2 transition-colors " +
|
|
85
|
+
"hover:bg-purple-50 dark:hover:bg-purple-900/20 " +
|
|
86
|
+
"focus:outline-none focus:ring-2 focus:ring-purple-500 dark:focus:ring-purple-400",
|
|
87
|
+
},
|
|
88
|
+
colorModeWrapper: {
|
|
89
|
+
className: "ml-2",
|
|
90
|
+
},
|
|
91
|
+
// ThemeToggle reads the CSS vars defined in `nav.className`; override via `themeToggle` if needed.
|
|
92
|
+
// themeToggle: { ... }
|
|
93
|
+
ctaButtonWrapper: {
|
|
94
|
+
className: "ml-2",
|
|
95
|
+
},
|
|
96
|
+
mobileMenuInner: {
|
|
97
|
+
className: "space-y-2 px-4 pt-2 pb-4",
|
|
98
|
+
},
|
|
99
|
+
// Mobile menu links get their hover background from the `--navbar-hover-bg` CSS variable
|
|
100
|
+
// (set on the `nav` slot above). This class simply applies that variable on `:hover`, and can be
|
|
101
|
+
// removed/overridden if a different mobile-link hover treatment is preferable.
|
|
102
|
+
mobileLinks: {
|
|
103
|
+
className: "hover:bg-[var(--navbar-hover-bg)]",
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
export function Navbar(overrides: PresetOverrides = {}) {
|
|
108
|
+
// Shallow-merge: passing a style-slot object (e.g., links, nav, etc.)
|
|
109
|
+
// replaces the default for that slot.
|
|
110
|
+
const props: SharedNavbarProps = {
|
|
111
|
+
...defaultProps,
|
|
112
|
+
...overrides,
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
return <SharedNavbar {...props} />;
|
|
116
|
+
}
|
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Pricing as SharedPricing } from "@/components/sections/Pricing";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Product Launch preset for Pricing
|
|
7
|
-
*/
|
|
8
|
-
export function Pricing() {
|
|
9
|
-
return (
|
|
10
|
-
<SharedPricing
|
|
11
|
-
id="pricing"
|
|
12
|
-
pricingHeadingText="Choose Your AI Plan"
|
|
13
|
-
pricingPlans={[
|
|
14
|
-
{
|
|
15
|
-
pricingPlanHeaderText: "Starter",
|
|
16
|
-
pricingPlanPrice: "$29",
|
|
17
|
-
pricingPlanFeatures: [
|
|
18
|
-
"Up to 1,000 AI requests/month",
|
|
19
|
-
"Basic AI models access",
|
|
20
|
-
"Email support",
|
|
21
|
-
"Standard analytics",
|
|
22
|
-
"API access",
|
|
23
|
-
],
|
|
24
|
-
pricingPlanCTALabel: "Get Started",
|
|
25
|
-
pricingPlanCTAHref: "#contact",
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
pricingPlanHeaderText: "Professional",
|
|
29
|
-
pricingPlanPrice: "$99",
|
|
30
|
-
pricingPlanFeatures: [
|
|
31
|
-
"Up to 10,000 AI requests/month",
|
|
32
|
-
"Advanced AI models access",
|
|
33
|
-
"Priority support",
|
|
34
|
-
"Advanced analytics & insights",
|
|
35
|
-
"Full API access",
|
|
36
|
-
"Custom integrations",
|
|
37
|
-
"Team collaboration tools",
|
|
38
|
-
],
|
|
39
|
-
pricingPlanCTALabel: "Start Free Trial",
|
|
40
|
-
pricingPlanCTAHref: "#contact",
|
|
41
|
-
isPopular: true,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
pricingPlanHeaderText: "Enterprise",
|
|
45
|
-
pricingPlanPrice: "Custom",
|
|
46
|
-
pricingPlanFeatures: [
|
|
47
|
-
"Unlimited AI requests",
|
|
48
|
-
"Premium AI models access",
|
|
49
|
-
"24/7 dedicated support",
|
|
50
|
-
"Custom analytics dashboard",
|
|
51
|
-
"White-label solutions",
|
|
52
|
-
"Custom model training",
|
|
53
|
-
"SLA guarantee",
|
|
54
|
-
"On-premise deployment",
|
|
55
|
-
],
|
|
56
|
-
pricingPlanCTALabel: "Contact Sales",
|
|
57
|
-
pricingPlanCTAHref: "#contact",
|
|
58
|
-
},
|
|
59
|
-
]}
|
|
60
|
-
section={{
|
|
61
|
-
className:
|
|
62
|
-
"pt-20 pb-16 bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-white",
|
|
63
|
-
}}
|
|
64
|
-
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
65
|
-
heading={{
|
|
66
|
-
className:
|
|
67
|
-
"text-3xl md:text-4xl lg:text-5xl font-bold text-center text-gray-800 dark:text-white mb-4 font-outfit",
|
|
68
|
-
}}
|
|
69
|
-
grid={{
|
|
70
|
-
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-12",
|
|
71
|
-
}}
|
|
72
|
-
card={{
|
|
73
|
-
className:
|
|
74
|
-
"relative bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-2xl shadow-lg hover:shadow-2xl hover:shadow-purple-500/20 transition-all duration-300 hover:-translate-y-2 hover:border-purple-300 dark:hover:border-purple-600",
|
|
75
|
-
}}
|
|
76
|
-
header={{
|
|
77
|
-
className:
|
|
78
|
-
"p-8 text-center border-b border-gray-200 dark:border-gray-700",
|
|
79
|
-
}}
|
|
80
|
-
title={{
|
|
81
|
-
className:
|
|
82
|
-
"text-xl md:text-2xl font-bold text-gray-800 dark:text-white mb-3 font-outfit",
|
|
83
|
-
}}
|
|
84
|
-
price={{
|
|
85
|
-
className:
|
|
86
|
-
"text-3xl md:text-4xl font-bold text-purple-600 dark:text-purple-400 mb-6 font-outfit",
|
|
87
|
-
}}
|
|
88
|
-
features={{ className: "p-8 space-y-4" }}
|
|
89
|
-
featureItem={{
|
|
90
|
-
className:
|
|
91
|
-
"flex items-center text-gray-600 dark:text-gray-300 text-sm md:text-base font-inter",
|
|
92
|
-
}}
|
|
93
|
-
cta={{
|
|
94
|
-
variant: "default",
|
|
95
|
-
size: "lg",
|
|
96
|
-
className:
|
|
97
|
-
"w-full font-semibold text-base shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5 border-0 [--btn-bg:theme(colors.purple.600)] hover:[--btn-hover-bg:theme(colors.purple.700)] [--btn-fg:white] hover:[--btn-hover-fg:white] [--btn-border:transparent]",
|
|
98
|
-
}}
|
|
99
|
-
popularBadge={{
|
|
100
|
-
className:
|
|
101
|
-
"absolute -top-4 left-1/2 transform -translate-x-1/2 bg-purple-600 text-white px-6 py-2 rounded-full text-sm font-medium font-inter shadow-lg",
|
|
102
|
-
}}
|
|
103
|
-
ariaLabel="IntelliOpAI pricing plans"
|
|
104
|
-
/>
|
|
105
|
-
);
|
|
106
|
-
}
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { Pricing as SharedPricing } from "@/components/sections/Pricing";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Product Launch preset for Pricing
|
|
7
|
+
*/
|
|
8
|
+
export function Pricing() {
|
|
9
|
+
return (
|
|
10
|
+
<SharedPricing
|
|
11
|
+
id="pricing"
|
|
12
|
+
pricingHeadingText="Choose Your AI Plan"
|
|
13
|
+
pricingPlans={[
|
|
14
|
+
{
|
|
15
|
+
pricingPlanHeaderText: "Starter",
|
|
16
|
+
pricingPlanPrice: "$29",
|
|
17
|
+
pricingPlanFeatures: [
|
|
18
|
+
"Up to 1,000 AI requests/month",
|
|
19
|
+
"Basic AI models access",
|
|
20
|
+
"Email support",
|
|
21
|
+
"Standard analytics",
|
|
22
|
+
"API access",
|
|
23
|
+
],
|
|
24
|
+
pricingPlanCTALabel: "Get Started",
|
|
25
|
+
pricingPlanCTAHref: "#contact",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
pricingPlanHeaderText: "Professional",
|
|
29
|
+
pricingPlanPrice: "$99",
|
|
30
|
+
pricingPlanFeatures: [
|
|
31
|
+
"Up to 10,000 AI requests/month",
|
|
32
|
+
"Advanced AI models access",
|
|
33
|
+
"Priority support",
|
|
34
|
+
"Advanced analytics & insights",
|
|
35
|
+
"Full API access",
|
|
36
|
+
"Custom integrations",
|
|
37
|
+
"Team collaboration tools",
|
|
38
|
+
],
|
|
39
|
+
pricingPlanCTALabel: "Start Free Trial",
|
|
40
|
+
pricingPlanCTAHref: "#contact",
|
|
41
|
+
isPopular: true,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
pricingPlanHeaderText: "Enterprise",
|
|
45
|
+
pricingPlanPrice: "Custom",
|
|
46
|
+
pricingPlanFeatures: [
|
|
47
|
+
"Unlimited AI requests",
|
|
48
|
+
"Premium AI models access",
|
|
49
|
+
"24/7 dedicated support",
|
|
50
|
+
"Custom analytics dashboard",
|
|
51
|
+
"White-label solutions",
|
|
52
|
+
"Custom model training",
|
|
53
|
+
"SLA guarantee",
|
|
54
|
+
"On-premise deployment",
|
|
55
|
+
],
|
|
56
|
+
pricingPlanCTALabel: "Contact Sales",
|
|
57
|
+
pricingPlanCTAHref: "#contact",
|
|
58
|
+
},
|
|
59
|
+
]}
|
|
60
|
+
section={{
|
|
61
|
+
className:
|
|
62
|
+
"pt-20 pb-16 bg-gray-50 dark:bg-gray-900 text-gray-800 dark:text-white",
|
|
63
|
+
}}
|
|
64
|
+
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
65
|
+
heading={{
|
|
66
|
+
className:
|
|
67
|
+
"text-3xl md:text-4xl lg:text-5xl font-bold text-center text-gray-800 dark:text-white mb-4 font-outfit",
|
|
68
|
+
}}
|
|
69
|
+
grid={{
|
|
70
|
+
className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-12",
|
|
71
|
+
}}
|
|
72
|
+
card={{
|
|
73
|
+
className:
|
|
74
|
+
"relative bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-2xl shadow-lg hover:shadow-2xl hover:shadow-purple-500/20 transition-all duration-300 hover:-translate-y-2 hover:border-purple-300 dark:hover:border-purple-600",
|
|
75
|
+
}}
|
|
76
|
+
header={{
|
|
77
|
+
className:
|
|
78
|
+
"p-8 text-center border-b border-gray-200 dark:border-gray-700",
|
|
79
|
+
}}
|
|
80
|
+
title={{
|
|
81
|
+
className:
|
|
82
|
+
"text-xl md:text-2xl font-bold text-gray-800 dark:text-white mb-3 font-outfit",
|
|
83
|
+
}}
|
|
84
|
+
price={{
|
|
85
|
+
className:
|
|
86
|
+
"text-3xl md:text-4xl font-bold text-purple-600 dark:text-purple-400 mb-6 font-outfit",
|
|
87
|
+
}}
|
|
88
|
+
features={{ className: "p-8 space-y-4" }}
|
|
89
|
+
featureItem={{
|
|
90
|
+
className:
|
|
91
|
+
"flex items-center text-gray-600 dark:text-gray-300 text-sm md:text-base font-inter",
|
|
92
|
+
}}
|
|
93
|
+
cta={{
|
|
94
|
+
variant: "default",
|
|
95
|
+
size: "lg",
|
|
96
|
+
className:
|
|
97
|
+
"w-full font-semibold text-base shadow-lg hover:shadow-xl transition-all duration-200 hover:-translate-y-0.5 border-0 [--btn-bg:theme(colors.purple.600)] hover:[--btn-hover-bg:theme(colors.purple.700)] [--btn-fg:white] hover:[--btn-hover-fg:white] [--btn-border:transparent]",
|
|
98
|
+
}}
|
|
99
|
+
popularBadge={{
|
|
100
|
+
className:
|
|
101
|
+
"absolute -top-4 left-1/2 transform -translate-x-1/2 bg-purple-600 text-white px-6 py-2 rounded-full text-sm font-medium font-inter shadow-lg",
|
|
102
|
+
}}
|
|
103
|
+
ariaLabel="IntelliOpAI pricing plans"
|
|
104
|
+
/>
|
|
105
|
+
);
|
|
106
|
+
}
|