@opensite/ui 1.2.9 → 1.3.1
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/dist/carousel-scale-focus.cjs +3 -2
- package/dist/carousel-scale-focus.d.cts +5 -1
- package/dist/carousel-scale-focus.d.ts +5 -1
- package/dist/carousel-scale-focus.js +3 -2
- package/dist/feature-badge-grid-six.cjs +88 -13
- package/dist/feature-badge-grid-six.d.cts +1 -1
- package/dist/feature-badge-grid-six.d.ts +1 -1
- package/dist/feature-badge-grid-six.js +88 -13
- package/dist/feature-capabilities-grid.cjs +5 -6
- package/dist/feature-capabilities-grid.js +5 -6
- package/dist/feature-category-image-cards.cjs +1 -1
- package/dist/feature-category-image-cards.d.cts +1 -1
- package/dist/feature-category-image-cards.d.ts +1 -1
- package/dist/feature-category-image-cards.js +1 -1
- package/dist/feature-checklist-image.cjs +5 -5
- package/dist/feature-checklist-image.js +5 -5
- package/dist/feature-icon-grid-accent.cjs +6 -6
- package/dist/feature-icon-grid-accent.js +6 -6
- package/dist/feature-icon-grid-bordered.cjs +5 -10
- package/dist/feature-icon-grid-bordered.d.cts +1 -1
- package/dist/feature-icon-grid-bordered.d.ts +1 -1
- package/dist/feature-icon-grid-bordered.js +5 -10
- package/dist/feature-icon-grid-muted.cjs +1 -1
- package/dist/feature-icon-grid-muted.js +1 -1
- package/dist/feature-icon-tabs-content.cjs +91 -109
- package/dist/feature-icon-tabs-content.js +91 -109
- package/dist/feature-image-cards-three-column.cjs +23 -17
- package/dist/feature-image-cards-three-column.d.cts +1 -1
- package/dist/feature-image-cards-three-column.d.ts +1 -1
- package/dist/feature-image-cards-three-column.js +23 -17
- package/dist/feature-numbered-cards.cjs +2 -2
- package/dist/feature-numbered-cards.js +2 -2
- package/dist/feature-pattern-grid-links.cjs +142 -29
- package/dist/feature-pattern-grid-links.d.cts +21 -1
- package/dist/feature-pattern-grid-links.d.ts +21 -1
- package/dist/feature-pattern-grid-links.js +142 -29
- package/dist/feature-tabbed-content-image.cjs +1 -1
- package/dist/feature-tabbed-content-image.d.cts +1 -1
- package/dist/feature-tabbed-content-image.d.ts +1 -1
- package/dist/feature-tabbed-content-image.js +1 -1
- package/dist/feature-three-column-values.cjs +474 -37
- package/dist/feature-three-column-values.d.cts +4 -0
- package/dist/feature-three-column-values.d.ts +4 -0
- package/dist/feature-three-column-values.js +474 -37
- package/dist/feature-utility-cards-grid.cjs +21 -5
- package/dist/feature-utility-cards-grid.js +21 -5
- package/dist/registry.cjs +449 -240
- package/dist/registry.js +449 -240
- package/package.json +1 -1
package/dist/registry.js
CHANGED
|
@@ -23920,12 +23920,12 @@ function FeatureIconGridBordered({
|
|
|
23920
23920
|
features,
|
|
23921
23921
|
featuresSlot,
|
|
23922
23922
|
className,
|
|
23923
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23924
23923
|
labelClassName,
|
|
23925
23924
|
titleClassName,
|
|
23926
23925
|
gridClassName,
|
|
23927
23926
|
cardClassName,
|
|
23928
23927
|
background,
|
|
23928
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23929
23929
|
spacing = "py-12 md:py-32",
|
|
23930
23930
|
pattern,
|
|
23931
23931
|
patternOpacity,
|
|
@@ -23945,23 +23945,22 @@ function FeatureIconGridBordered({
|
|
|
23945
23945
|
"div",
|
|
23946
23946
|
{
|
|
23947
23947
|
className: cn(
|
|
23948
|
-
"relative flex gap-
|
|
23948
|
+
"relative flex h-full flex-col justify-between gap-6 rounded-none border-dashed px-0 md:border-l md:px-5",
|
|
23949
23949
|
cardClassName,
|
|
23950
23950
|
feature.className
|
|
23951
23951
|
),
|
|
23952
23952
|
children: [
|
|
23953
23953
|
(feature.icon || feature.iconName) && /* @__PURE__ */ jsx(
|
|
23954
|
-
"
|
|
23954
|
+
"div",
|
|
23955
23955
|
{
|
|
23956
23956
|
className: cn(
|
|
23957
|
-
"
|
|
23958
|
-
getAccentColor(background),
|
|
23957
|
+
"flex size-10 shrink-0 items-center justify-center rounded-lg md:size-12 text-accent-foreground bg-primary shadow-xl",
|
|
23959
23958
|
feature.iconClassName
|
|
23960
23959
|
),
|
|
23961
23960
|
children: renderIcon(feature)
|
|
23962
23961
|
}
|
|
23963
23962
|
),
|
|
23964
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
23963
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col justify-end gap-2", children: [
|
|
23965
23964
|
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsx(
|
|
23966
23965
|
Pressable,
|
|
23967
23966
|
{
|
|
@@ -24160,7 +24159,7 @@ function FeatureChecklistImage({
|
|
|
24160
24159
|
patternOpacity,
|
|
24161
24160
|
patternClassName,
|
|
24162
24161
|
className,
|
|
24163
|
-
containerClassName
|
|
24162
|
+
containerClassName,
|
|
24164
24163
|
children: /* @__PURE__ */ jsxs(
|
|
24165
24164
|
"div",
|
|
24166
24165
|
{
|
|
@@ -24174,7 +24173,7 @@ function FeatureChecklistImage({
|
|
|
24174
24173
|
"div",
|
|
24175
24174
|
{
|
|
24176
24175
|
className: cn(
|
|
24177
|
-
"px-
|
|
24176
|
+
"px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
|
|
24178
24177
|
contentClassName
|
|
24179
24178
|
),
|
|
24180
24179
|
children: [
|
|
@@ -24197,12 +24196,12 @@ function FeatureChecklistImage({
|
|
|
24197
24196
|
children: title
|
|
24198
24197
|
}
|
|
24199
24198
|
)),
|
|
24200
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("
|
|
24199
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("relative", descriptionClassName), children: description })),
|
|
24201
24200
|
actionsContent && /* @__PURE__ */ jsx(
|
|
24202
24201
|
"div",
|
|
24203
24202
|
{
|
|
24204
24203
|
className: cn(
|
|
24205
|
-
"flex flex-wrap items-center gap-4
|
|
24204
|
+
"flex flex-wrap items-center gap-4",
|
|
24206
24205
|
actionsClassName
|
|
24207
24206
|
),
|
|
24208
24207
|
children: actionsContent
|
|
@@ -24212,7 +24211,7 @@ function FeatureChecklistImage({
|
|
|
24212
24211
|
"ul",
|
|
24213
24212
|
{
|
|
24214
24213
|
className: cn(
|
|
24215
|
-
"
|
|
24214
|
+
"flex-wrap items-center space-y-2 md:flex",
|
|
24216
24215
|
checklistClassName
|
|
24217
24216
|
),
|
|
24218
24217
|
children: checklistContent
|
|
@@ -24712,7 +24711,7 @@ function FeatureNumberedCards({
|
|
|
24712
24711
|
[]
|
|
24713
24712
|
);
|
|
24714
24713
|
const cardImg = useCallback((feature) => {
|
|
24715
|
-
if (!feature.image
|
|
24714
|
+
if (!feature.image && !feature.imageSlot) return null;
|
|
24716
24715
|
if (feature.imageSlot) return feature.imageSlot;
|
|
24717
24716
|
const imageAlt = feature.imageAlt || (typeof feature.title === "string" ? feature.title : "Feature image");
|
|
24718
24717
|
return /* @__PURE__ */ jsx("div", { className: "overflow-hidden h-full w-full rounded-t-lg rounded-b-none md:rounded-t-none md:rounded-l-none md:rounded-r-lg", children: /* @__PURE__ */ jsx(
|
|
@@ -24818,7 +24817,7 @@ function FeatureNumberedCards({
|
|
|
24818
24817
|
"span",
|
|
24819
24818
|
{
|
|
24820
24819
|
className: cn(
|
|
24821
|
-
"absolute top-5 left-5 flex size-
|
|
24820
|
+
"absolute top-2 md:top-5 left-2 md:left-5 flex size-10 md:size-12 items-center justify-center rounded-md shadow-lg bg-primary text-sm md:text-md text-primary-foreground lg:top-10 lg:left-10 font-semibold",
|
|
24822
24821
|
badgeClassName
|
|
24823
24822
|
),
|
|
24824
24823
|
children: String(index + 1).padStart(2, "0")
|
|
@@ -24899,7 +24898,7 @@ function FeatureIconGridAccent({
|
|
|
24899
24898
|
features,
|
|
24900
24899
|
featuresSlot,
|
|
24901
24900
|
className,
|
|
24902
|
-
containerClassName,
|
|
24901
|
+
containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
|
|
24903
24902
|
headerClassName,
|
|
24904
24903
|
labelClassName,
|
|
24905
24904
|
titleClassName,
|
|
@@ -24907,7 +24906,7 @@ function FeatureIconGridAccent({
|
|
|
24907
24906
|
gridClassName,
|
|
24908
24907
|
cardClassName,
|
|
24909
24908
|
background,
|
|
24910
|
-
spacing,
|
|
24909
|
+
spacing = "py-6 md:py-32",
|
|
24911
24910
|
pattern,
|
|
24912
24911
|
patternOpacity,
|
|
24913
24912
|
patternClassName
|
|
@@ -24946,7 +24945,7 @@ function FeatureIconGridAccent({
|
|
|
24946
24945
|
);
|
|
24947
24946
|
});
|
|
24948
24947
|
}, [featuresSlot, features, cardClassName, background]);
|
|
24949
|
-
return /* @__PURE__ */
|
|
24948
|
+
return /* @__PURE__ */ jsx(
|
|
24950
24949
|
Section,
|
|
24951
24950
|
{
|
|
24952
24951
|
background,
|
|
@@ -24956,7 +24955,7 @@ function FeatureIconGridAccent({
|
|
|
24956
24955
|
patternClassName,
|
|
24957
24956
|
className,
|
|
24958
24957
|
containerClassName,
|
|
24959
|
-
children: [
|
|
24958
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
24960
24959
|
(label || title || description) && /* @__PURE__ */ jsx(
|
|
24961
24960
|
"div",
|
|
24962
24961
|
{
|
|
@@ -24990,13 +24989,13 @@ function FeatureIconGridAccent({
|
|
|
24990
24989
|
"div",
|
|
24991
24990
|
{
|
|
24992
24991
|
className: cn(
|
|
24993
|
-
"mx-auto
|
|
24992
|
+
"mx-auto grid max-w-5xl gap-6 md:grid-cols-2",
|
|
24994
24993
|
gridClassName
|
|
24995
24994
|
),
|
|
24996
24995
|
children: featuresContent
|
|
24997
24996
|
}
|
|
24998
24997
|
)
|
|
24999
|
-
]
|
|
24998
|
+
] })
|
|
25000
24999
|
}
|
|
25001
25000
|
);
|
|
25002
25001
|
}
|
|
@@ -25006,13 +25005,13 @@ function FeatureThreeColumnValues({
|
|
|
25006
25005
|
values,
|
|
25007
25006
|
valuesSlot,
|
|
25008
25007
|
className,
|
|
25009
|
-
containerClassName,
|
|
25008
|
+
containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
|
|
25010
25009
|
labelClassName,
|
|
25011
25010
|
titleClassName,
|
|
25012
25011
|
gridClassName,
|
|
25013
25012
|
cardClassName,
|
|
25014
25013
|
background,
|
|
25015
|
-
spacing = "py-
|
|
25014
|
+
spacing = "py-12 md:py-32",
|
|
25016
25015
|
pattern,
|
|
25017
25016
|
patternOpacity,
|
|
25018
25017
|
patternClassName
|
|
@@ -25032,38 +25031,48 @@ function FeatureThreeColumnValues({
|
|
|
25032
25031
|
return values.map((value, index) => /* @__PURE__ */ jsxs(
|
|
25033
25032
|
"div",
|
|
25034
25033
|
{
|
|
25035
|
-
className: cn(
|
|
25034
|
+
className: cn(
|
|
25035
|
+
"relative flex h-full flex-col justify-between gap-6 rounded-lg p-5 bg-card text-card-foreground shadow-lg border",
|
|
25036
|
+
cardClassName,
|
|
25037
|
+
value.className
|
|
25038
|
+
),
|
|
25036
25039
|
children: [
|
|
25037
25040
|
(value.icon || value.iconName) && /* @__PURE__ */ jsx(
|
|
25038
|
-
"
|
|
25041
|
+
"div",
|
|
25039
25042
|
{
|
|
25040
25043
|
className: cn(
|
|
25041
|
-
"
|
|
25044
|
+
"flex size-fit p-3 items-center justify-center rounded-full border",
|
|
25042
25045
|
value.iconClassName
|
|
25043
25046
|
),
|
|
25044
25047
|
children: renderValueIcon(value)
|
|
25045
25048
|
}
|
|
25046
25049
|
),
|
|
25047
|
-
|
|
25048
|
-
"
|
|
25049
|
-
|
|
25050
|
-
|
|
25051
|
-
|
|
25052
|
-
|
|
25053
|
-
|
|
25054
|
-
|
|
25055
|
-
|
|
25056
|
-
|
|
25057
|
-
|
|
25058
|
-
|
|
25059
|
-
|
|
25060
|
-
|
|
25050
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col justify-end gap-2", children: [
|
|
25051
|
+
value.title && (typeof value.title === "string" ? /* @__PURE__ */ jsx(
|
|
25052
|
+
Pressable,
|
|
25053
|
+
{
|
|
25054
|
+
href: value.href,
|
|
25055
|
+
className: cn(
|
|
25056
|
+
"font-medium md:mb-2 text-xl",
|
|
25057
|
+
value.titleClassName
|
|
25058
|
+
),
|
|
25059
|
+
children: value.title
|
|
25060
|
+
}
|
|
25061
|
+
) : /* @__PURE__ */ jsx(
|
|
25062
|
+
"div",
|
|
25063
|
+
{
|
|
25064
|
+
className: cn("mb-2 text-xl font-medium", value.titleClassName),
|
|
25065
|
+
children: value.title
|
|
25066
|
+
}
|
|
25067
|
+
)),
|
|
25068
|
+
value.description && (typeof value.description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("leading-7 ", value.descriptionClassName), children: value.description }) : /* @__PURE__ */ jsx("div", { className: cn("leading-7", value.descriptionClassName), children: value.description }))
|
|
25069
|
+
] })
|
|
25061
25070
|
]
|
|
25062
25071
|
},
|
|
25063
25072
|
index
|
|
25064
25073
|
));
|
|
25065
25074
|
}, [valuesSlot, values, cardClassName, renderValueIcon]);
|
|
25066
|
-
return /* @__PURE__ */
|
|
25075
|
+
return /* @__PURE__ */ jsx(
|
|
25067
25076
|
Section,
|
|
25068
25077
|
{
|
|
25069
25078
|
background,
|
|
@@ -25073,32 +25082,40 @@ function FeatureThreeColumnValues({
|
|
|
25073
25082
|
patternClassName,
|
|
25074
25083
|
className,
|
|
25075
25084
|
containerClassName,
|
|
25076
|
-
children: [
|
|
25077
|
-
label
|
|
25078
|
-
|
|
25079
|
-
"
|
|
25080
|
-
|
|
25081
|
-
|
|
25082
|
-
|
|
25083
|
-
|
|
25084
|
-
|
|
25085
|
-
|
|
25086
|
-
|
|
25087
|
-
|
|
25088
|
-
|
|
25089
|
-
|
|
25090
|
-
|
|
25085
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25086
|
+
label || title ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-4", children: [
|
|
25087
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm", labelClassName), children: label }) : /* @__PURE__ */ jsx("div", { className: cn("text-sm", labelClassName), children: label })),
|
|
25088
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsx(
|
|
25089
|
+
"h2",
|
|
25090
|
+
{
|
|
25091
|
+
className: cn(
|
|
25092
|
+
"text-3xl font-medium lg:text-4xl",
|
|
25093
|
+
titleClassName
|
|
25094
|
+
),
|
|
25095
|
+
children: title
|
|
25096
|
+
}
|
|
25097
|
+
) : /* @__PURE__ */ jsx(
|
|
25098
|
+
"div",
|
|
25099
|
+
{
|
|
25100
|
+
className: cn(
|
|
25101
|
+
"text-3xl font-medium lg:text-4xl",
|
|
25102
|
+
titleClassName
|
|
25103
|
+
),
|
|
25104
|
+
children: title
|
|
25105
|
+
}
|
|
25106
|
+
))
|
|
25107
|
+
] }) : null,
|
|
25091
25108
|
(valuesSlot || values && values.length > 0) && /* @__PURE__ */ jsx(
|
|
25092
25109
|
"div",
|
|
25093
25110
|
{
|
|
25094
25111
|
className: cn(
|
|
25095
|
-
"
|
|
25112
|
+
"grid gap-6 grid-cols-1 md:grid-cols-3",
|
|
25096
25113
|
gridClassName
|
|
25097
25114
|
),
|
|
25098
25115
|
children: valuesContent
|
|
25099
25116
|
}
|
|
25100
25117
|
)
|
|
25101
|
-
]
|
|
25118
|
+
] })
|
|
25102
25119
|
}
|
|
25103
25120
|
);
|
|
25104
25121
|
}
|
|
@@ -25111,7 +25128,8 @@ function FeatureBadgeGridSix({
|
|
|
25111
25128
|
action,
|
|
25112
25129
|
actionSlot,
|
|
25113
25130
|
className,
|
|
25114
|
-
containerClassName,
|
|
25131
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25132
|
+
spacing = "py-12 md:py-32",
|
|
25115
25133
|
headerClassName,
|
|
25116
25134
|
badgeClassName,
|
|
25117
25135
|
titleClassName,
|
|
@@ -25119,7 +25137,6 @@ function FeatureBadgeGridSix({
|
|
|
25119
25137
|
cardClassName,
|
|
25120
25138
|
actionContainerClassName,
|
|
25121
25139
|
background,
|
|
25122
|
-
spacing,
|
|
25123
25140
|
pattern,
|
|
25124
25141
|
patternOpacity,
|
|
25125
25142
|
patternClassName
|
|
@@ -25151,12 +25168,54 @@ function FeatureBadgeGridSix({
|
|
|
25151
25168
|
return /* @__PURE__ */ jsxs(
|
|
25152
25169
|
"div",
|
|
25153
25170
|
{
|
|
25154
|
-
className: cn(
|
|
25171
|
+
className: cn(
|
|
25172
|
+
"flex gap-6 space-y-4 rounded-lg md:block",
|
|
25173
|
+
cardClassName,
|
|
25174
|
+
feature.className
|
|
25175
|
+
),
|
|
25155
25176
|
children: [
|
|
25156
|
-
iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-
|
|
25177
|
+
iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-card text-card-foreground md:size-12 shadow-sm border", children: iconContent }),
|
|
25157
25178
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
25158
|
-
feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx(
|
|
25159
|
-
|
|
25179
|
+
feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx(
|
|
25180
|
+
"h3",
|
|
25181
|
+
{
|
|
25182
|
+
className: cn(
|
|
25183
|
+
"font-medium md:mb-2 md:text-xl",
|
|
25184
|
+
feature.headingClassName
|
|
25185
|
+
),
|
|
25186
|
+
children: feature.heading
|
|
25187
|
+
}
|
|
25188
|
+
) : /* @__PURE__ */ jsx(
|
|
25189
|
+
"div",
|
|
25190
|
+
{
|
|
25191
|
+
className: cn(
|
|
25192
|
+
"font-medium md:mb-2 md:text-xl",
|
|
25193
|
+
feature.headingClassName
|
|
25194
|
+
),
|
|
25195
|
+
children: feature.heading
|
|
25196
|
+
}
|
|
25197
|
+
)),
|
|
25198
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx(
|
|
25199
|
+
"p",
|
|
25200
|
+
{
|
|
25201
|
+
className: cn(
|
|
25202
|
+
"text-sm md:text-base",
|
|
25203
|
+
getTextColor(background, "muted"),
|
|
25204
|
+
feature.descriptionClassName
|
|
25205
|
+
),
|
|
25206
|
+
children: feature.description
|
|
25207
|
+
}
|
|
25208
|
+
) : /* @__PURE__ */ jsx(
|
|
25209
|
+
"div",
|
|
25210
|
+
{
|
|
25211
|
+
className: cn(
|
|
25212
|
+
"text-sm md:text-base",
|
|
25213
|
+
getTextColor(background, "muted"),
|
|
25214
|
+
feature.descriptionClassName
|
|
25215
|
+
),
|
|
25216
|
+
children: feature.description
|
|
25217
|
+
}
|
|
25218
|
+
))
|
|
25160
25219
|
] })
|
|
25161
25220
|
]
|
|
25162
25221
|
},
|
|
@@ -25200,7 +25259,7 @@ function FeatureBadgeGridSix({
|
|
|
25200
25259
|
}
|
|
25201
25260
|
);
|
|
25202
25261
|
}, [actionSlot, action]);
|
|
25203
|
-
return /* @__PURE__ */
|
|
25262
|
+
return /* @__PURE__ */ jsx(
|
|
25204
25263
|
Section,
|
|
25205
25264
|
{
|
|
25206
25265
|
background,
|
|
@@ -25210,71 +25269,169 @@ function FeatureBadgeGridSix({
|
|
|
25210
25269
|
patternClassName,
|
|
25211
25270
|
className,
|
|
25212
25271
|
containerClassName,
|
|
25213
|
-
children: [
|
|
25214
|
-
(label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("
|
|
25272
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25273
|
+
(label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
|
|
25215
25274
|
badgeContent,
|
|
25216
|
-
title && (typeof title === "string" ? /* @__PURE__ */ jsx(
|
|
25275
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsx(
|
|
25276
|
+
"h2",
|
|
25277
|
+
{
|
|
25278
|
+
className: cn(
|
|
25279
|
+
"text-2xl font-bold md:text-3xl lg:text-4xl",
|
|
25280
|
+
titleClassName
|
|
25281
|
+
),
|
|
25282
|
+
children: title
|
|
25283
|
+
}
|
|
25284
|
+
) : /* @__PURE__ */ jsx(
|
|
25285
|
+
"div",
|
|
25286
|
+
{
|
|
25287
|
+
className: cn(
|
|
25288
|
+
"text-2xl font-bold md:text-3xl lg:text-4xl",
|
|
25289
|
+
titleClassName
|
|
25290
|
+
),
|
|
25291
|
+
children: title
|
|
25292
|
+
}
|
|
25293
|
+
))
|
|
25217
25294
|
] }),
|
|
25218
|
-
/* @__PURE__ */ jsx(
|
|
25219
|
-
|
|
25220
|
-
|
|
25295
|
+
/* @__PURE__ */ jsx(
|
|
25296
|
+
"div",
|
|
25297
|
+
{
|
|
25298
|
+
className: cn(
|
|
25299
|
+
"grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
|
|
25300
|
+
gridClassName
|
|
25301
|
+
),
|
|
25302
|
+
children: featuresContent
|
|
25303
|
+
}
|
|
25304
|
+
),
|
|
25305
|
+
(action || actionSlot) && /* @__PURE__ */ jsx(
|
|
25306
|
+
"div",
|
|
25307
|
+
{
|
|
25308
|
+
className: cn("mt-8 flex justify-center", actionContainerClassName),
|
|
25309
|
+
children: actionContent
|
|
25310
|
+
}
|
|
25311
|
+
)
|
|
25312
|
+
] })
|
|
25221
25313
|
}
|
|
25222
25314
|
);
|
|
25223
25315
|
}
|
|
25224
25316
|
function FeaturePatternGridLinks({
|
|
25317
|
+
title,
|
|
25318
|
+
description,
|
|
25319
|
+
titleClassName,
|
|
25320
|
+
descriptionClassName,
|
|
25321
|
+
headerClassName,
|
|
25225
25322
|
features,
|
|
25226
25323
|
featuresSlot,
|
|
25227
25324
|
className,
|
|
25228
|
-
|
|
25325
|
+
spacing = "py-12 md:py-32",
|
|
25326
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25229
25327
|
gridClassName,
|
|
25230
25328
|
cardClassName,
|
|
25231
25329
|
background,
|
|
25232
|
-
spacing,
|
|
25233
25330
|
pattern,
|
|
25234
25331
|
patternOpacity,
|
|
25235
25332
|
patternClassName
|
|
25236
25333
|
}) {
|
|
25237
|
-
const renderFeatureIcon = useCallback(
|
|
25238
|
-
|
|
25239
|
-
|
|
25240
|
-
|
|
25241
|
-
|
|
25242
|
-
|
|
25243
|
-
|
|
25244
|
-
|
|
25245
|
-
|
|
25246
|
-
|
|
25247
|
-
|
|
25248
|
-
|
|
25249
|
-
|
|
25250
|
-
|
|
25251
|
-
|
|
25252
|
-
|
|
25253
|
-
|
|
25254
|
-
|
|
25255
|
-
|
|
25256
|
-
|
|
25257
|
-
|
|
25258
|
-
|
|
25334
|
+
const renderFeatureIcon = useCallback(
|
|
25335
|
+
(feature) => {
|
|
25336
|
+
if (feature.icon) return feature.icon;
|
|
25337
|
+
if (feature.iconName)
|
|
25338
|
+
return /* @__PURE__ */ jsx(
|
|
25339
|
+
DynamicIcon,
|
|
25340
|
+
{
|
|
25341
|
+
name: feature.iconName,
|
|
25342
|
+
size: 24,
|
|
25343
|
+
className: feature.iconClassName
|
|
25344
|
+
}
|
|
25345
|
+
);
|
|
25346
|
+
return null;
|
|
25347
|
+
},
|
|
25348
|
+
[]
|
|
25349
|
+
);
|
|
25350
|
+
const renderFeatureLink = useCallback(
|
|
25351
|
+
(feature) => {
|
|
25352
|
+
if (feature.linkSlot) return feature.linkSlot;
|
|
25353
|
+
if (!feature.link && !feature.linkLabel) return null;
|
|
25354
|
+
const label = feature.linkLabel || (feature.link ? "Learn more" : null);
|
|
25355
|
+
if (!label) return null;
|
|
25356
|
+
return /* @__PURE__ */ jsxs(
|
|
25357
|
+
Pressable,
|
|
25358
|
+
{
|
|
25359
|
+
href: feature.link,
|
|
25360
|
+
className: cn(
|
|
25361
|
+
"flex items-center gap-2 text-sm font-medium",
|
|
25362
|
+
feature.linkClassName
|
|
25363
|
+
),
|
|
25364
|
+
children: [
|
|
25365
|
+
label,
|
|
25366
|
+
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/chevron-right", size: 16 })
|
|
25367
|
+
]
|
|
25368
|
+
}
|
|
25369
|
+
);
|
|
25370
|
+
},
|
|
25371
|
+
[]
|
|
25372
|
+
);
|
|
25259
25373
|
const featuresContent = useMemo$1(() => {
|
|
25260
25374
|
if (featuresSlot) return featuresSlot;
|
|
25261
25375
|
if (!features || features.length === 0) return null;
|
|
25262
25376
|
return features.map((feature, index) => /* @__PURE__ */ jsxs(
|
|
25263
25377
|
"div",
|
|
25264
25378
|
{
|
|
25265
|
-
className: cn(
|
|
25379
|
+
className: cn(
|
|
25380
|
+
"flex flex-col gap-10 rounded-lg border p-8",
|
|
25381
|
+
cardClassName,
|
|
25382
|
+
feature.className
|
|
25383
|
+
),
|
|
25266
25384
|
children: [
|
|
25267
25385
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
25268
25386
|
renderFeatureIcon(feature),
|
|
25269
|
-
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsx(
|
|
25270
|
-
|
|
25387
|
+
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsx(
|
|
25388
|
+
"h3",
|
|
25389
|
+
{
|
|
25390
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25391
|
+
children: feature.title
|
|
25392
|
+
}
|
|
25393
|
+
) : /* @__PURE__ */ jsx(
|
|
25394
|
+
"div",
|
|
25395
|
+
{
|
|
25396
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25397
|
+
children: feature.title
|
|
25398
|
+
}
|
|
25399
|
+
)),
|
|
25400
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx(
|
|
25401
|
+
"p",
|
|
25402
|
+
{
|
|
25403
|
+
className: cn(
|
|
25404
|
+
"text-sm",
|
|
25405
|
+
getTextColor(background, "muted"),
|
|
25406
|
+
feature.descriptionClassName
|
|
25407
|
+
),
|
|
25408
|
+
children: feature.description
|
|
25409
|
+
}
|
|
25410
|
+
) : /* @__PURE__ */ jsx(
|
|
25411
|
+
"div",
|
|
25412
|
+
{
|
|
25413
|
+
className: cn(
|
|
25414
|
+
"text-sm",
|
|
25415
|
+
getTextColor(background, "muted"),
|
|
25416
|
+
feature.descriptionClassName
|
|
25417
|
+
),
|
|
25418
|
+
children: feature.description
|
|
25419
|
+
}
|
|
25420
|
+
))
|
|
25271
25421
|
] }),
|
|
25272
25422
|
renderFeatureLink(feature)
|
|
25273
25423
|
]
|
|
25274
25424
|
},
|
|
25275
25425
|
index
|
|
25276
25426
|
));
|
|
25277
|
-
}, [
|
|
25427
|
+
}, [
|
|
25428
|
+
featuresSlot,
|
|
25429
|
+
features,
|
|
25430
|
+
cardClassName,
|
|
25431
|
+
renderFeatureIcon,
|
|
25432
|
+
renderFeatureLink,
|
|
25433
|
+
background
|
|
25434
|
+
]);
|
|
25278
25435
|
return /* @__PURE__ */ jsx(
|
|
25279
25436
|
Section,
|
|
25280
25437
|
{
|
|
@@ -25285,7 +25442,55 @@ function FeaturePatternGridLinks({
|
|
|
25285
25442
|
patternClassName,
|
|
25286
25443
|
className,
|
|
25287
25444
|
containerClassName,
|
|
25288
|
-
children: /* @__PURE__ */
|
|
25445
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25446
|
+
title || description ? /* @__PURE__ */ jsxs(
|
|
25447
|
+
"div",
|
|
25448
|
+
{
|
|
25449
|
+
className: cn(
|
|
25450
|
+
"flex flex-col gap-4 md:gap-6 text-left",
|
|
25451
|
+
headerClassName
|
|
25452
|
+
),
|
|
25453
|
+
children: [
|
|
25454
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsx(
|
|
25455
|
+
"h2",
|
|
25456
|
+
{
|
|
25457
|
+
className: cn(
|
|
25458
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25459
|
+
titleClassName
|
|
25460
|
+
),
|
|
25461
|
+
children: title
|
|
25462
|
+
}
|
|
25463
|
+
) : /* @__PURE__ */ jsx(
|
|
25464
|
+
"div",
|
|
25465
|
+
{
|
|
25466
|
+
className: cn(
|
|
25467
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25468
|
+
titleClassName
|
|
25469
|
+
),
|
|
25470
|
+
children: title
|
|
25471
|
+
}
|
|
25472
|
+
)),
|
|
25473
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("max-w-lg md:max-w-md", descriptionClassName), children: description }) : /* @__PURE__ */ jsx(
|
|
25474
|
+
"div",
|
|
25475
|
+
{
|
|
25476
|
+
className: cn("max-w-lg md:max-w-md", descriptionClassName),
|
|
25477
|
+
children: description
|
|
25478
|
+
}
|
|
25479
|
+
))
|
|
25480
|
+
]
|
|
25481
|
+
}
|
|
25482
|
+
) : null,
|
|
25483
|
+
/* @__PURE__ */ jsx(
|
|
25484
|
+
"div",
|
|
25485
|
+
{
|
|
25486
|
+
className: cn(
|
|
25487
|
+
"grid gap-6 md:grid-cols-2 lg:grid-cols-3",
|
|
25488
|
+
gridClassName
|
|
25489
|
+
),
|
|
25490
|
+
children: featuresContent
|
|
25491
|
+
}
|
|
25492
|
+
)
|
|
25493
|
+
] })
|
|
25289
25494
|
}
|
|
25290
25495
|
);
|
|
25291
25496
|
}
|
|
@@ -25296,7 +25501,6 @@ function FeatureTabbedContentImage({
|
|
|
25296
25501
|
slidesSlot,
|
|
25297
25502
|
defaultTab,
|
|
25298
25503
|
className,
|
|
25299
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25300
25504
|
headerClassName,
|
|
25301
25505
|
titleClassName,
|
|
25302
25506
|
descriptionClassName,
|
|
@@ -25308,6 +25512,7 @@ function FeatureTabbedContentImage({
|
|
|
25308
25512
|
contentGridClassName,
|
|
25309
25513
|
optixFlowConfig,
|
|
25310
25514
|
background,
|
|
25515
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25311
25516
|
spacing = "py-6 md:py-32",
|
|
25312
25517
|
pattern,
|
|
25313
25518
|
patternOpacity,
|
|
@@ -25570,7 +25775,14 @@ function FeatureUtilityCardsGrid({
|
|
|
25570
25775
|
const renderLabelIcon = useMemo$1(() => {
|
|
25571
25776
|
if (labelIcon) return labelIcon;
|
|
25572
25777
|
if (labelIconName)
|
|
25573
|
-
return /* @__PURE__ */ jsx(
|
|
25778
|
+
return /* @__PURE__ */ jsx(
|
|
25779
|
+
DynamicIcon,
|
|
25780
|
+
{
|
|
25781
|
+
name: labelIconName,
|
|
25782
|
+
size: 20,
|
|
25783
|
+
className: getAccentColor(background)
|
|
25784
|
+
}
|
|
25785
|
+
);
|
|
25574
25786
|
return null;
|
|
25575
25787
|
}, [labelIcon, labelIconName, background]);
|
|
25576
25788
|
const learnMoreContent = useMemo$1(() => {
|
|
@@ -25667,10 +25879,19 @@ function FeatureUtilityCardsGrid({
|
|
|
25667
25879
|
headerClassName
|
|
25668
25880
|
),
|
|
25669
25881
|
children: [
|
|
25670
|
-
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxs(
|
|
25671
|
-
|
|
25672
|
-
|
|
25673
|
-
|
|
25882
|
+
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxs(
|
|
25883
|
+
"div",
|
|
25884
|
+
{
|
|
25885
|
+
className: cn(
|
|
25886
|
+
"text-lg flex items-center gap-4",
|
|
25887
|
+
labelClassName
|
|
25888
|
+
),
|
|
25889
|
+
children: [
|
|
25890
|
+
renderLabelIcon,
|
|
25891
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsx("p", { children: label }) : /* @__PURE__ */ jsx("div", { children: label }))
|
|
25892
|
+
]
|
|
25893
|
+
}
|
|
25894
|
+
),
|
|
25674
25895
|
learnMoreContent
|
|
25675
25896
|
]
|
|
25676
25897
|
}
|
|
@@ -26052,7 +26273,7 @@ function FeatureIconTabsContent({
|
|
|
26052
26273
|
tabsSlot,
|
|
26053
26274
|
defaultTab,
|
|
26054
26275
|
className,
|
|
26055
|
-
containerClassName,
|
|
26276
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26056
26277
|
headerClassName,
|
|
26057
26278
|
badgeClassName,
|
|
26058
26279
|
headingClassName,
|
|
@@ -26063,7 +26284,7 @@ function FeatureIconTabsContent({
|
|
|
26063
26284
|
tabContentClassName,
|
|
26064
26285
|
optixFlowConfig,
|
|
26065
26286
|
background,
|
|
26066
|
-
spacing = "
|
|
26287
|
+
spacing = "pt-14 pb-12 md:pt-32 md:pb-32",
|
|
26067
26288
|
pattern,
|
|
26068
26289
|
patternOpacity,
|
|
26069
26290
|
patternClassName
|
|
@@ -26143,11 +26364,11 @@ function FeatureIconTabsContent({
|
|
|
26143
26364
|
if (!tabs || tabs.length === 0) return null;
|
|
26144
26365
|
const activeDefaultTab = defaultTab || tabs[0]?.value;
|
|
26145
26366
|
return /* @__PURE__ */ jsxs(Tabs, { defaultValue: activeDefaultTab, className: "mt-8", children: [
|
|
26146
|
-
/* @__PURE__ */ jsx("div", { className: "container overflow-x-auto px-4 pb-2 md:px-6", children: /* @__PURE__ */ jsx(
|
|
26367
|
+
/* @__PURE__ */ jsx("div", { className: "container overflow-x-auto px-4 pb-2 md:px-6 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-border/50 hover:scrollbar-thumb-border md:overflow-x-visible [&::-webkit-scrollbar]:h-1 [&::-webkit-scrollbar-track]:bg-transparent [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-border/30", children: /* @__PURE__ */ jsx(
|
|
26147
26368
|
TabsList,
|
|
26148
26369
|
{
|
|
26149
26370
|
className: cn(
|
|
26150
|
-
"inline-flex w-auto
|
|
26371
|
+
"inline-flex w-auto items-center justify-start gap-2 bg-transparent md:w-full md:justify-center md:gap-4 h-auto! p-0!",
|
|
26151
26372
|
tabsListClassName
|
|
26152
26373
|
),
|
|
26153
26374
|
children: tabs.map((tab) => /* @__PURE__ */ jsxs(
|
|
@@ -26155,7 +26376,7 @@ function FeatureIconTabsContent({
|
|
|
26155
26376
|
{
|
|
26156
26377
|
value: tab.value,
|
|
26157
26378
|
className: cn(
|
|
26158
|
-
"flex
|
|
26379
|
+
"flex h-auto! w-auto! flex-none items-center gap-2 rounded-lg border border-border pl-0 pr-4 md:pl-4 md:pr-4 py-2.5 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground data-[state=active]:bg-primary data-[state=active]:text-primary-foreground",
|
|
26159
26380
|
`data-[state=active]:${getBorderColor(background, "accent")}`,
|
|
26160
26381
|
tabTriggerClassName,
|
|
26161
26382
|
tab.className
|
|
@@ -26169,99 +26390,87 @@ function FeatureIconTabsContent({
|
|
|
26169
26390
|
))
|
|
26170
26391
|
}
|
|
26171
26392
|
) }),
|
|
26172
|
-
/* @__PURE__ */ jsx(
|
|
26173
|
-
|
|
26174
|
-
|
|
26175
|
-
|
|
26176
|
-
|
|
26177
|
-
|
|
26178
|
-
|
|
26179
|
-
|
|
26180
|
-
|
|
26181
|
-
|
|
26182
|
-
|
|
26183
|
-
|
|
26184
|
-
|
|
26185
|
-
|
|
26186
|
-
|
|
26187
|
-
|
|
26188
|
-
|
|
26189
|
-
|
|
26190
|
-
|
|
26191
|
-
|
|
26192
|
-
|
|
26193
|
-
|
|
26194
|
-
|
|
26195
|
-
|
|
26196
|
-
|
|
26197
|
-
|
|
26198
|
-
|
|
26199
|
-
|
|
26200
|
-
|
|
26393
|
+
/* @__PURE__ */ jsx("div", { className: cn("py-6 md:py-10", contentWrapperClassName), children: /* @__PURE__ */ jsx("div", { className: "p-4 md:p-8 bg-muted/50 rounded-2xl shadow-lg", children: tabs.map((tab) => {
|
|
26394
|
+
if (tab.contentSlot) {
|
|
26395
|
+
return /* @__PURE__ */ jsx(
|
|
26396
|
+
TabsContent,
|
|
26397
|
+
{
|
|
26398
|
+
value: tab.value,
|
|
26399
|
+
className: tabContentClassName,
|
|
26400
|
+
children: tab.contentSlot
|
|
26401
|
+
},
|
|
26402
|
+
tab.value
|
|
26403
|
+
);
|
|
26404
|
+
}
|
|
26405
|
+
const content = tab.content;
|
|
26406
|
+
if (!content) return null;
|
|
26407
|
+
return /* @__PURE__ */ jsxs(
|
|
26408
|
+
TabsContent,
|
|
26409
|
+
{
|
|
26410
|
+
value: tab.value,
|
|
26411
|
+
className: cn(
|
|
26412
|
+
"grid place-items-start gap-20 lg:grid-cols-2 lg:gap-10",
|
|
26413
|
+
tabContentClassName,
|
|
26414
|
+
content.className
|
|
26415
|
+
),
|
|
26416
|
+
children: [
|
|
26417
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-5", children: [
|
|
26418
|
+
content.badge && /* @__PURE__ */ jsx(
|
|
26419
|
+
Badge,
|
|
26420
|
+
{
|
|
26421
|
+
variant: "outline",
|
|
26422
|
+
className: cn("w-fit", content.badgeClassName),
|
|
26423
|
+
children: content.badge
|
|
26424
|
+
}
|
|
26201
26425
|
),
|
|
26202
|
-
|
|
26203
|
-
|
|
26204
|
-
|
|
26205
|
-
|
|
26206
|
-
|
|
26207
|
-
|
|
26208
|
-
className: cn(
|
|
26209
|
-
"w-fit",
|
|
26210
|
-
content.badgeClassName
|
|
26211
|
-
),
|
|
26212
|
-
children: content.badge
|
|
26213
|
-
}
|
|
26426
|
+
content.title && (typeof content.title === "string" ? /* @__PURE__ */ jsx(
|
|
26427
|
+
"h3",
|
|
26428
|
+
{
|
|
26429
|
+
className: cn(
|
|
26430
|
+
"text-2xl font-semibold",
|
|
26431
|
+
content.titleClassName
|
|
26214
26432
|
),
|
|
26215
|
-
|
|
26216
|
-
|
|
26217
|
-
|
|
26218
|
-
|
|
26219
|
-
|
|
26220
|
-
|
|
26221
|
-
|
|
26222
|
-
|
|
26223
|
-
|
|
26224
|
-
|
|
26225
|
-
|
|
26226
|
-
|
|
26227
|
-
|
|
26228
|
-
|
|
26229
|
-
|
|
26230
|
-
|
|
26231
|
-
|
|
26232
|
-
|
|
26233
|
-
|
|
26234
|
-
|
|
26235
|
-
|
|
26236
|
-
|
|
26237
|
-
|
|
26238
|
-
|
|
26239
|
-
|
|
26240
|
-
|
|
26241
|
-
|
|
26242
|
-
|
|
26243
|
-
|
|
26244
|
-
)
|
|
26245
|
-
|
|
26246
|
-
|
|
26247
|
-
|
|
26248
|
-
|
|
26249
|
-
|
|
26250
|
-
|
|
26251
|
-
|
|
26252
|
-
|
|
26253
|
-
|
|
26254
|
-
|
|
26255
|
-
|
|
26256
|
-
] }),
|
|
26257
|
-
(content.imageSlot || content.imageSrc) && /* @__PURE__ */ jsx("div", { className: "relative h-[300px] w-full lg:h-[400px]", children: renderTabContentImage(content) })
|
|
26258
|
-
]
|
|
26259
|
-
},
|
|
26260
|
-
tab.value
|
|
26261
|
-
);
|
|
26262
|
-
}) })
|
|
26263
|
-
}
|
|
26264
|
-
)
|
|
26433
|
+
children: content.title
|
|
26434
|
+
}
|
|
26435
|
+
) : /* @__PURE__ */ jsx(
|
|
26436
|
+
"div",
|
|
26437
|
+
{
|
|
26438
|
+
className: cn(
|
|
26439
|
+
"text-2xl font-semibold",
|
|
26440
|
+
content.titleClassName
|
|
26441
|
+
),
|
|
26442
|
+
children: content.title
|
|
26443
|
+
}
|
|
26444
|
+
)),
|
|
26445
|
+
content.description && (typeof content.description === "string" ? /* @__PURE__ */ jsx(
|
|
26446
|
+
"p",
|
|
26447
|
+
{
|
|
26448
|
+
className: cn(
|
|
26449
|
+
"lg:text-lg",
|
|
26450
|
+
getTextColor(background, "muted"),
|
|
26451
|
+
content.descriptionClassName
|
|
26452
|
+
),
|
|
26453
|
+
children: content.description
|
|
26454
|
+
}
|
|
26455
|
+
) : /* @__PURE__ */ jsx(
|
|
26456
|
+
"div",
|
|
26457
|
+
{
|
|
26458
|
+
className: cn(
|
|
26459
|
+
"lg:text-lg",
|
|
26460
|
+
getTextColor(background, "muted"),
|
|
26461
|
+
content.descriptionClassName
|
|
26462
|
+
),
|
|
26463
|
+
children: content.description
|
|
26464
|
+
}
|
|
26465
|
+
)),
|
|
26466
|
+
(content.actionsSlot || content.actions && content.actions.length > 0) && renderTabContentActions(content)
|
|
26467
|
+
] }),
|
|
26468
|
+
(content.imageSlot || content.imageSrc) && /* @__PURE__ */ jsx("div", { className: "relative h-[300px] w-full lg:h-[400px]", children: renderTabContentImage(content) })
|
|
26469
|
+
]
|
|
26470
|
+
},
|
|
26471
|
+
tab.value
|
|
26472
|
+
);
|
|
26473
|
+
}) }) })
|
|
26265
26474
|
] });
|
|
26266
26475
|
}, [
|
|
26267
26476
|
tabsSlot,
|
|
@@ -26275,7 +26484,7 @@ function FeatureIconTabsContent({
|
|
|
26275
26484
|
renderTabContentActions,
|
|
26276
26485
|
renderTabContentImage
|
|
26277
26486
|
]);
|
|
26278
|
-
return /* @__PURE__ */
|
|
26487
|
+
return /* @__PURE__ */ jsx(
|
|
26279
26488
|
Section,
|
|
26280
26489
|
{
|
|
26281
26490
|
background,
|
|
@@ -26284,8 +26493,8 @@ function FeatureIconTabsContent({
|
|
|
26284
26493
|
patternOpacity,
|
|
26285
26494
|
patternClassName,
|
|
26286
26495
|
className,
|
|
26287
|
-
containerClassName
|
|
26288
|
-
children: [
|
|
26496
|
+
containerClassName,
|
|
26497
|
+
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
26289
26498
|
(badge || heading || description) && /* @__PURE__ */ jsxs(
|
|
26290
26499
|
"div",
|
|
26291
26500
|
{
|
|
@@ -26299,7 +26508,7 @@ function FeatureIconTabsContent({
|
|
|
26299
26508
|
"h1",
|
|
26300
26509
|
{
|
|
26301
26510
|
className: cn(
|
|
26302
|
-
"max-w-
|
|
26511
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26303
26512
|
headingClassName
|
|
26304
26513
|
),
|
|
26305
26514
|
children: heading
|
|
@@ -26308,24 +26517,18 @@ function FeatureIconTabsContent({
|
|
|
26308
26517
|
"div",
|
|
26309
26518
|
{
|
|
26310
26519
|
className: cn(
|
|
26311
|
-
"max-w-
|
|
26520
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26312
26521
|
headingClassName
|
|
26313
26522
|
),
|
|
26314
26523
|
children: heading
|
|
26315
26524
|
}
|
|
26316
26525
|
)),
|
|
26317
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn(
|
|
26318
|
-
"div",
|
|
26319
|
-
{
|
|
26320
|
-
className: cn(getTextColor(background, "muted"), descriptionClassName),
|
|
26321
|
-
children: description
|
|
26322
|
-
}
|
|
26323
|
-
))
|
|
26526
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-balance", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("text-balance", descriptionClassName), children: description }))
|
|
26324
26527
|
]
|
|
26325
26528
|
}
|
|
26326
26529
|
),
|
|
26327
26530
|
tabsContent
|
|
26328
|
-
]
|
|
26531
|
+
] })
|
|
26329
26532
|
}
|
|
26330
26533
|
);
|
|
26331
26534
|
}
|
|
@@ -26593,7 +26796,6 @@ function FeatureCategoryImageCards({
|
|
|
26593
26796
|
features,
|
|
26594
26797
|
featuresSlot,
|
|
26595
26798
|
className,
|
|
26596
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26597
26799
|
headerClassName,
|
|
26598
26800
|
badgeClassName,
|
|
26599
26801
|
titleClassName,
|
|
@@ -26602,6 +26804,7 @@ function FeatureCategoryImageCards({
|
|
|
26602
26804
|
cardClassName,
|
|
26603
26805
|
optixFlowConfig,
|
|
26604
26806
|
background,
|
|
26807
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26605
26808
|
spacing = "py-12 md:py-32",
|
|
26606
26809
|
pattern,
|
|
26607
26810
|
patternOpacity,
|
|
@@ -26888,14 +27091,14 @@ function FeatureImageCardsThreeColumn({
|
|
|
26888
27091
|
cards,
|
|
26889
27092
|
cardsSlot,
|
|
26890
27093
|
className,
|
|
26891
|
-
containerClassName,
|
|
27094
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
27095
|
+
spacing = "py-12 md:py-32",
|
|
26892
27096
|
titleClassName,
|
|
26893
27097
|
descriptionClassName,
|
|
26894
27098
|
gridClassName,
|
|
26895
27099
|
cardClassName,
|
|
26896
27100
|
optixFlowConfig,
|
|
26897
27101
|
background,
|
|
26898
|
-
spacing,
|
|
26899
27102
|
pattern,
|
|
26900
27103
|
patternOpacity,
|
|
26901
27104
|
patternClassName
|
|
@@ -26909,7 +27112,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
26909
27112
|
{
|
|
26910
27113
|
src: card.imageSrc,
|
|
26911
27114
|
alt: imageAlt,
|
|
26912
|
-
className: "h-full max-h-[450px] w-full rounded-xl object-cover object-center",
|
|
27115
|
+
className: "h-full max-h-[450px] min-h-80 w-full rounded-xl object-cover object-center",
|
|
26913
27116
|
loading: "lazy",
|
|
26914
27117
|
optixFlowConfig
|
|
26915
27118
|
}
|
|
@@ -26924,7 +27127,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
26924
27127
|
}
|
|
26925
27128
|
if (card.icon) return card.icon;
|
|
26926
27129
|
if (!card.iconName) return null;
|
|
26927
|
-
return /* @__PURE__ */ jsx(DynamicIcon, { name: card.iconName, size:
|
|
27130
|
+
return /* @__PURE__ */ jsx(DynamicIcon, { name: card.iconName, size: 18 });
|
|
26928
27131
|
},
|
|
26929
27132
|
[]
|
|
26930
27133
|
);
|
|
@@ -26945,18 +27148,25 @@ function FeatureImageCardsThreeColumn({
|
|
|
26945
27148
|
),
|
|
26946
27149
|
children: [
|
|
26947
27150
|
renderImage(card, imageAlt),
|
|
26948
|
-
/* @__PURE__ */ jsx("div", { className: "absolute top-0 right-0 bottom-0 left-0 translate-y-20 rounded-xl bg-linear-to-t from-black to-transparent transition-transform duration-300 group-hover:translate-y-0" }),
|
|
27151
|
+
/* @__PURE__ */ jsx("div", { className: "absolute top-0 right-0 bottom-0 left-0 translate-y-10 md:translate-y-20 rounded-xl bg-linear-to-t from-black to-transparent transition-transform duration-300 group-hover:translate-y-0" }),
|
|
26949
27152
|
/* @__PURE__ */ jsxs("div", { className: "absolute top-0 flex h-full w-full flex-col justify-between p-4 md:p-6", children: [
|
|
26950
|
-
(card.badgeText || card.avatarSrc || card.icon || card.iconName) && /* @__PURE__ */ jsxs(
|
|
26951
|
-
|
|
26952
|
-
|
|
26953
|
-
|
|
26954
|
-
|
|
27153
|
+
(card.badgeText || card.avatarSrc || card.icon || card.iconName) && /* @__PURE__ */ jsxs(
|
|
27154
|
+
Badge,
|
|
27155
|
+
{
|
|
27156
|
+
variant: "default",
|
|
27157
|
+
className: cn("py-1 px-4", card.badgeClassName),
|
|
27158
|
+
children: [
|
|
27159
|
+
renderBadgeIcon(card),
|
|
27160
|
+
card.badgeText
|
|
27161
|
+
]
|
|
27162
|
+
}
|
|
27163
|
+
),
|
|
27164
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2 md:gap-4", children: [
|
|
26955
27165
|
card.title && (typeof card.title === "string" ? /* @__PURE__ */ jsx(
|
|
26956
27166
|
"h3",
|
|
26957
27167
|
{
|
|
26958
27168
|
className: cn(
|
|
26959
|
-
"text-
|
|
27169
|
+
"text-lg md:text-xl font-semibold",
|
|
26960
27170
|
card.titleClassName
|
|
26961
27171
|
),
|
|
26962
27172
|
children: card.title
|
|
@@ -26965,20 +27175,19 @@ function FeatureImageCardsThreeColumn({
|
|
|
26965
27175
|
"div",
|
|
26966
27176
|
{
|
|
26967
27177
|
className: cn(
|
|
26968
|
-
"text-
|
|
27178
|
+
"text-lg md:text-xl font-semibold",
|
|
26969
27179
|
card.titleClassName
|
|
26970
27180
|
),
|
|
26971
27181
|
children: card.title
|
|
26972
27182
|
}
|
|
26973
27183
|
)),
|
|
26974
27184
|
card.linkText && card.link && /* @__PURE__ */ jsxs(
|
|
26975
|
-
|
|
27185
|
+
"div",
|
|
26976
27186
|
{
|
|
26977
27187
|
className: cn(
|
|
26978
|
-
"font-bold text-xs uppercase",
|
|
27188
|
+
"font-bold text-xs uppercase flex items-center gap-2",
|
|
26979
27189
|
card.linkClassName
|
|
26980
27190
|
),
|
|
26981
|
-
href: card.link,
|
|
26982
27191
|
children: [
|
|
26983
27192
|
card.linkText,
|
|
26984
27193
|
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/arrow-up-right", size: 18 })
|
|
@@ -27009,7 +27218,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27009
27218
|
"h2",
|
|
27010
27219
|
{
|
|
27011
27220
|
className: cn(
|
|
27012
|
-
"text-
|
|
27221
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27013
27222
|
titleClassName
|
|
27014
27223
|
),
|
|
27015
27224
|
children: title
|
|
@@ -27018,7 +27227,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27018
27227
|
"div",
|
|
27019
27228
|
{
|
|
27020
27229
|
className: cn(
|
|
27021
|
-
"text-
|
|
27230
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27022
27231
|
titleClassName
|
|
27023
27232
|
),
|
|
27024
27233
|
children: title
|
|
@@ -27164,7 +27373,7 @@ function FeatureIconGridMuted({
|
|
|
27164
27373
|
"div",
|
|
27165
27374
|
{
|
|
27166
27375
|
className: cn(
|
|
27167
|
-
"mx-auto
|
|
27376
|
+
"mx-auto grid max-w-full md:max-w-7xl gap-4 md:gap-7 grid-cols-1 md:grid-cols-2 lg:grid-cols-3",
|
|
27168
27377
|
gridClassName
|
|
27169
27378
|
),
|
|
27170
27379
|
children: featuresContent
|
|
@@ -27538,8 +27747,8 @@ function FeatureCapabilitiesGrid({
|
|
|
27538
27747
|
items,
|
|
27539
27748
|
itemsSlot,
|
|
27540
27749
|
className,
|
|
27541
|
-
containerClassName = "px-
|
|
27542
|
-
spacing = "py-
|
|
27750
|
+
containerClassName = "mx-auto w-full max-w-screen-lg md:max-w-screen-4xl relative z-10 px-6 sm:px-2 md:px-2 lg:px-2",
|
|
27751
|
+
spacing = "py-12 md:py-32",
|
|
27543
27752
|
eyebrowClassName,
|
|
27544
27753
|
headingClassName,
|
|
27545
27754
|
gridClassName,
|
|
@@ -27566,7 +27775,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27566
27775
|
Card,
|
|
27567
27776
|
{
|
|
27568
27777
|
className: cn(
|
|
27569
|
-
"group relative rounded-md overflow-visible border-border/10 bg-
|
|
27778
|
+
"group relative rounded-md overflow-visible border-border/10 bg-card text-card-foreground p-0 transition-colors duration-300 hover:border-border/20",
|
|
27570
27779
|
cardClassName,
|
|
27571
27780
|
item.className
|
|
27572
27781
|
),
|
|
@@ -27584,7 +27793,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27584
27793
|
"div",
|
|
27585
27794
|
{
|
|
27586
27795
|
className: cn(
|
|
27587
|
-
"flex h-10 w-10 items-center justify-center rounded-xl border
|
|
27796
|
+
"flex h-10 w-10 items-center justify-center rounded-xl border ",
|
|
27588
27797
|
item.iconClassName
|
|
27589
27798
|
),
|
|
27590
27799
|
children: iconContent
|
|
@@ -27613,7 +27822,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27613
27822
|
"span",
|
|
27614
27823
|
{
|
|
27615
27824
|
className: cn(
|
|
27616
|
-
"rounded-full border
|
|
27825
|
+
"rounded-full border px-2 py-0.5 text-[10px] leading-none",
|
|
27617
27826
|
item.badgeClassName
|
|
27618
27827
|
),
|
|
27619
27828
|
children: item.badge
|
|
@@ -27658,7 +27867,6 @@ function FeatureCapabilitiesGrid({
|
|
|
27658
27867
|
patternClassName,
|
|
27659
27868
|
className,
|
|
27660
27869
|
containerClassName,
|
|
27661
|
-
containerMaxWidth: "lg",
|
|
27662
27870
|
children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
27663
27871
|
eyebrow || heading ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-4 md:space-y-6", children: [
|
|
27664
27872
|
eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm tracking-widest", eyebrowClassName), children: eyebrow }) : /* @__PURE__ */ jsx(
|
|
@@ -34497,7 +34705,8 @@ function CarouselScaleFocus({
|
|
|
34497
34705
|
indicatorClassName,
|
|
34498
34706
|
startIndex = 1,
|
|
34499
34707
|
background,
|
|
34500
|
-
|
|
34708
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
34709
|
+
spacing = "py-12 md:py-32",
|
|
34501
34710
|
pattern,
|
|
34502
34711
|
patternOpacity,
|
|
34503
34712
|
patternClassName,
|
|
@@ -34607,7 +34816,7 @@ function CarouselScaleFocus({
|
|
|
34607
34816
|
patternOpacity,
|
|
34608
34817
|
patternClassName,
|
|
34609
34818
|
className: cn("overflow-hidden", className),
|
|
34610
|
-
containerClassName
|
|
34819
|
+
containerClassName,
|
|
34611
34820
|
children: [
|
|
34612
34821
|
/* @__PURE__ */ jsxs("div", { className: "md:px-45", children: [
|
|
34613
34822
|
title || description ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
|