@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.cjs
CHANGED
|
@@ -23960,12 +23960,12 @@ function FeatureIconGridBordered({
|
|
|
23960
23960
|
features,
|
|
23961
23961
|
featuresSlot,
|
|
23962
23962
|
className,
|
|
23963
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23964
23963
|
labelClassName,
|
|
23965
23964
|
titleClassName,
|
|
23966
23965
|
gridClassName,
|
|
23967
23966
|
cardClassName,
|
|
23968
23967
|
background,
|
|
23968
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23969
23969
|
spacing = "py-12 md:py-32",
|
|
23970
23970
|
pattern,
|
|
23971
23971
|
patternOpacity,
|
|
@@ -23985,23 +23985,22 @@ function FeatureIconGridBordered({
|
|
|
23985
23985
|
"div",
|
|
23986
23986
|
{
|
|
23987
23987
|
className: cn(
|
|
23988
|
-
"relative flex gap-
|
|
23988
|
+
"relative flex h-full flex-col justify-between gap-6 rounded-none border-dashed px-0 md:border-l md:px-5",
|
|
23989
23989
|
cardClassName,
|
|
23990
23990
|
feature.className
|
|
23991
23991
|
),
|
|
23992
23992
|
children: [
|
|
23993
23993
|
(feature.icon || feature.iconName) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23994
|
-
"
|
|
23994
|
+
"div",
|
|
23995
23995
|
{
|
|
23996
23996
|
className: cn(
|
|
23997
|
-
"
|
|
23998
|
-
getAccentColor(background),
|
|
23997
|
+
"flex size-10 shrink-0 items-center justify-center rounded-lg md:size-12 text-accent-foreground bg-primary shadow-xl",
|
|
23999
23998
|
feature.iconClassName
|
|
24000
23999
|
),
|
|
24001
24000
|
children: renderIcon(feature)
|
|
24002
24001
|
}
|
|
24003
24002
|
),
|
|
24004
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
24003
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col justify-end gap-2", children: [
|
|
24005
24004
|
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
24006
24005
|
Pressable,
|
|
24007
24006
|
{
|
|
@@ -24200,7 +24199,7 @@ function FeatureChecklistImage({
|
|
|
24200
24199
|
patternOpacity,
|
|
24201
24200
|
patternClassName,
|
|
24202
24201
|
className,
|
|
24203
|
-
containerClassName
|
|
24202
|
+
containerClassName,
|
|
24204
24203
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
24205
24204
|
"div",
|
|
24206
24205
|
{
|
|
@@ -24214,7 +24213,7 @@ function FeatureChecklistImage({
|
|
|
24214
24213
|
"div",
|
|
24215
24214
|
{
|
|
24216
24215
|
className: cn(
|
|
24217
|
-
"px-
|
|
24216
|
+
"px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
|
|
24218
24217
|
contentClassName
|
|
24219
24218
|
),
|
|
24220
24219
|
children: [
|
|
@@ -24237,12 +24236,12 @@ function FeatureChecklistImage({
|
|
|
24237
24236
|
children: title
|
|
24238
24237
|
}
|
|
24239
24238
|
)),
|
|
24240
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("
|
|
24239
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("relative", descriptionClassName), children: description })),
|
|
24241
24240
|
actionsContent && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24242
24241
|
"div",
|
|
24243
24242
|
{
|
|
24244
24243
|
className: cn(
|
|
24245
|
-
"flex flex-wrap items-center gap-4
|
|
24244
|
+
"flex flex-wrap items-center gap-4",
|
|
24246
24245
|
actionsClassName
|
|
24247
24246
|
),
|
|
24248
24247
|
children: actionsContent
|
|
@@ -24252,7 +24251,7 @@ function FeatureChecklistImage({
|
|
|
24252
24251
|
"ul",
|
|
24253
24252
|
{
|
|
24254
24253
|
className: cn(
|
|
24255
|
-
"
|
|
24254
|
+
"flex-wrap items-center space-y-2 md:flex",
|
|
24256
24255
|
checklistClassName
|
|
24257
24256
|
),
|
|
24258
24257
|
children: checklistContent
|
|
@@ -24752,7 +24751,7 @@ function FeatureNumberedCards({
|
|
|
24752
24751
|
[]
|
|
24753
24752
|
);
|
|
24754
24753
|
const cardImg = React52.useCallback((feature) => {
|
|
24755
|
-
if (!feature.image
|
|
24754
|
+
if (!feature.image && !feature.imageSlot) return null;
|
|
24756
24755
|
if (feature.imageSlot) return feature.imageSlot;
|
|
24757
24756
|
const imageAlt = feature.imageAlt || (typeof feature.title === "string" ? feature.title : "Feature image");
|
|
24758
24757
|
return /* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.jsx(
|
|
@@ -24858,7 +24857,7 @@ function FeatureNumberedCards({
|
|
|
24858
24857
|
"span",
|
|
24859
24858
|
{
|
|
24860
24859
|
className: cn(
|
|
24861
|
-
"absolute top-5 left-5 flex size-
|
|
24860
|
+
"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",
|
|
24862
24861
|
badgeClassName
|
|
24863
24862
|
),
|
|
24864
24863
|
children: String(index + 1).padStart(2, "0")
|
|
@@ -24939,7 +24938,7 @@ function FeatureIconGridAccent({
|
|
|
24939
24938
|
features,
|
|
24940
24939
|
featuresSlot,
|
|
24941
24940
|
className,
|
|
24942
|
-
containerClassName,
|
|
24941
|
+
containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
|
|
24943
24942
|
headerClassName,
|
|
24944
24943
|
labelClassName,
|
|
24945
24944
|
titleClassName,
|
|
@@ -24947,7 +24946,7 @@ function FeatureIconGridAccent({
|
|
|
24947
24946
|
gridClassName,
|
|
24948
24947
|
cardClassName,
|
|
24949
24948
|
background,
|
|
24950
|
-
spacing,
|
|
24949
|
+
spacing = "py-6 md:py-32",
|
|
24951
24950
|
pattern,
|
|
24952
24951
|
patternOpacity,
|
|
24953
24952
|
patternClassName
|
|
@@ -24986,7 +24985,7 @@ function FeatureIconGridAccent({
|
|
|
24986
24985
|
);
|
|
24987
24986
|
});
|
|
24988
24987
|
}, [featuresSlot, features, cardClassName, background]);
|
|
24989
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
24988
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
24990
24989
|
Section,
|
|
24991
24990
|
{
|
|
24992
24991
|
background,
|
|
@@ -24996,7 +24995,7 @@ function FeatureIconGridAccent({
|
|
|
24996
24995
|
patternClassName,
|
|
24997
24996
|
className,
|
|
24998
24997
|
containerClassName,
|
|
24999
|
-
children: [
|
|
24998
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25000
24999
|
(label || title || description) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
25001
25000
|
"div",
|
|
25002
25001
|
{
|
|
@@ -25030,13 +25029,13 @@ function FeatureIconGridAccent({
|
|
|
25030
25029
|
"div",
|
|
25031
25030
|
{
|
|
25032
25031
|
className: cn(
|
|
25033
|
-
"mx-auto
|
|
25032
|
+
"mx-auto grid max-w-5xl gap-6 md:grid-cols-2",
|
|
25034
25033
|
gridClassName
|
|
25035
25034
|
),
|
|
25036
25035
|
children: featuresContent
|
|
25037
25036
|
}
|
|
25038
25037
|
)
|
|
25039
|
-
]
|
|
25038
|
+
] })
|
|
25040
25039
|
}
|
|
25041
25040
|
);
|
|
25042
25041
|
}
|
|
@@ -25046,13 +25045,13 @@ function FeatureThreeColumnValues({
|
|
|
25046
25045
|
values,
|
|
25047
25046
|
valuesSlot,
|
|
25048
25047
|
className,
|
|
25049
|
-
containerClassName,
|
|
25048
|
+
containerClassName = "px-6 sm:px-6 md:px-6 lg:px-8",
|
|
25050
25049
|
labelClassName,
|
|
25051
25050
|
titleClassName,
|
|
25052
25051
|
gridClassName,
|
|
25053
25052
|
cardClassName,
|
|
25054
25053
|
background,
|
|
25055
|
-
spacing = "py-
|
|
25054
|
+
spacing = "py-12 md:py-32",
|
|
25056
25055
|
pattern,
|
|
25057
25056
|
patternOpacity,
|
|
25058
25057
|
patternClassName
|
|
@@ -25072,38 +25071,48 @@ function FeatureThreeColumnValues({
|
|
|
25072
25071
|
return values.map((value, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25073
25072
|
"div",
|
|
25074
25073
|
{
|
|
25075
|
-
className: cn(
|
|
25074
|
+
className: cn(
|
|
25075
|
+
"relative flex h-full flex-col justify-between gap-6 rounded-lg p-5 bg-card text-card-foreground shadow-lg border",
|
|
25076
|
+
cardClassName,
|
|
25077
|
+
value.className
|
|
25078
|
+
),
|
|
25076
25079
|
children: [
|
|
25077
25080
|
(value.icon || value.iconName) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
25078
|
-
"
|
|
25081
|
+
"div",
|
|
25079
25082
|
{
|
|
25080
25083
|
className: cn(
|
|
25081
|
-
"
|
|
25084
|
+
"flex size-fit p-3 items-center justify-center rounded-full border",
|
|
25082
25085
|
value.iconClassName
|
|
25083
25086
|
),
|
|
25084
25087
|
children: renderValueIcon(value)
|
|
25085
25088
|
}
|
|
25086
25089
|
),
|
|
25087
|
-
|
|
25088
|
-
"
|
|
25089
|
-
|
|
25090
|
-
|
|
25091
|
-
|
|
25092
|
-
|
|
25093
|
-
|
|
25094
|
-
|
|
25095
|
-
|
|
25096
|
-
|
|
25097
|
-
|
|
25098
|
-
|
|
25099
|
-
|
|
25100
|
-
|
|
25090
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col justify-end gap-2", children: [
|
|
25091
|
+
value.title && (typeof value.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25092
|
+
Pressable,
|
|
25093
|
+
{
|
|
25094
|
+
href: value.href,
|
|
25095
|
+
className: cn(
|
|
25096
|
+
"font-medium md:mb-2 text-xl",
|
|
25097
|
+
value.titleClassName
|
|
25098
|
+
),
|
|
25099
|
+
children: value.title
|
|
25100
|
+
}
|
|
25101
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25102
|
+
"div",
|
|
25103
|
+
{
|
|
25104
|
+
className: cn("mb-2 text-xl font-medium", value.titleClassName),
|
|
25105
|
+
children: value.title
|
|
25106
|
+
}
|
|
25107
|
+
)),
|
|
25108
|
+
value.description && (typeof value.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("leading-7 ", value.descriptionClassName), children: value.description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("leading-7", value.descriptionClassName), children: value.description }))
|
|
25109
|
+
] })
|
|
25101
25110
|
]
|
|
25102
25111
|
},
|
|
25103
25112
|
index
|
|
25104
25113
|
));
|
|
25105
25114
|
}, [valuesSlot, values, cardClassName, renderValueIcon]);
|
|
25106
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
25115
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25107
25116
|
Section,
|
|
25108
25117
|
{
|
|
25109
25118
|
background,
|
|
@@ -25113,32 +25122,40 @@ function FeatureThreeColumnValues({
|
|
|
25113
25122
|
patternClassName,
|
|
25114
25123
|
className,
|
|
25115
25124
|
containerClassName,
|
|
25116
|
-
children: [
|
|
25117
|
-
label
|
|
25118
|
-
|
|
25119
|
-
"
|
|
25120
|
-
|
|
25121
|
-
|
|
25122
|
-
|
|
25123
|
-
|
|
25124
|
-
|
|
25125
|
-
|
|
25126
|
-
|
|
25127
|
-
|
|
25128
|
-
|
|
25129
|
-
|
|
25130
|
-
|
|
25125
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25126
|
+
label || title ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-4", children: [
|
|
25127
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm", labelClassName), children: label }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm", labelClassName), children: label })),
|
|
25128
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25129
|
+
"h2",
|
|
25130
|
+
{
|
|
25131
|
+
className: cn(
|
|
25132
|
+
"text-3xl font-medium lg:text-4xl",
|
|
25133
|
+
titleClassName
|
|
25134
|
+
),
|
|
25135
|
+
children: title
|
|
25136
|
+
}
|
|
25137
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25138
|
+
"div",
|
|
25139
|
+
{
|
|
25140
|
+
className: cn(
|
|
25141
|
+
"text-3xl font-medium lg:text-4xl",
|
|
25142
|
+
titleClassName
|
|
25143
|
+
),
|
|
25144
|
+
children: title
|
|
25145
|
+
}
|
|
25146
|
+
))
|
|
25147
|
+
] }) : null,
|
|
25131
25148
|
(valuesSlot || values && values.length > 0) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
25132
25149
|
"div",
|
|
25133
25150
|
{
|
|
25134
25151
|
className: cn(
|
|
25135
|
-
"
|
|
25152
|
+
"grid gap-6 grid-cols-1 md:grid-cols-3",
|
|
25136
25153
|
gridClassName
|
|
25137
25154
|
),
|
|
25138
25155
|
children: valuesContent
|
|
25139
25156
|
}
|
|
25140
25157
|
)
|
|
25141
|
-
]
|
|
25158
|
+
] })
|
|
25142
25159
|
}
|
|
25143
25160
|
);
|
|
25144
25161
|
}
|
|
@@ -25151,7 +25168,8 @@ function FeatureBadgeGridSix({
|
|
|
25151
25168
|
action,
|
|
25152
25169
|
actionSlot,
|
|
25153
25170
|
className,
|
|
25154
|
-
containerClassName,
|
|
25171
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25172
|
+
spacing = "py-12 md:py-32",
|
|
25155
25173
|
headerClassName,
|
|
25156
25174
|
badgeClassName,
|
|
25157
25175
|
titleClassName,
|
|
@@ -25159,7 +25177,6 @@ function FeatureBadgeGridSix({
|
|
|
25159
25177
|
cardClassName,
|
|
25160
25178
|
actionContainerClassName,
|
|
25161
25179
|
background,
|
|
25162
|
-
spacing,
|
|
25163
25180
|
pattern,
|
|
25164
25181
|
patternOpacity,
|
|
25165
25182
|
patternClassName
|
|
@@ -25191,12 +25208,54 @@ function FeatureBadgeGridSix({
|
|
|
25191
25208
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25192
25209
|
"div",
|
|
25193
25210
|
{
|
|
25194
|
-
className: cn(
|
|
25211
|
+
className: cn(
|
|
25212
|
+
"flex gap-6 space-y-4 rounded-lg md:block",
|
|
25213
|
+
cardClassName,
|
|
25214
|
+
feature.className
|
|
25215
|
+
),
|
|
25195
25216
|
children: [
|
|
25196
|
-
iconContent && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-
|
|
25217
|
+
iconContent && /* @__PURE__ */ jsxRuntime.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 }),
|
|
25197
25218
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
25198
|
-
feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25199
|
-
|
|
25219
|
+
feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25220
|
+
"h3",
|
|
25221
|
+
{
|
|
25222
|
+
className: cn(
|
|
25223
|
+
"font-medium md:mb-2 md:text-xl",
|
|
25224
|
+
feature.headingClassName
|
|
25225
|
+
),
|
|
25226
|
+
children: feature.heading
|
|
25227
|
+
}
|
|
25228
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25229
|
+
"div",
|
|
25230
|
+
{
|
|
25231
|
+
className: cn(
|
|
25232
|
+
"font-medium md:mb-2 md:text-xl",
|
|
25233
|
+
feature.headingClassName
|
|
25234
|
+
),
|
|
25235
|
+
children: feature.heading
|
|
25236
|
+
}
|
|
25237
|
+
)),
|
|
25238
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25239
|
+
"p",
|
|
25240
|
+
{
|
|
25241
|
+
className: cn(
|
|
25242
|
+
"text-sm md:text-base",
|
|
25243
|
+
getTextColor(background, "muted"),
|
|
25244
|
+
feature.descriptionClassName
|
|
25245
|
+
),
|
|
25246
|
+
children: feature.description
|
|
25247
|
+
}
|
|
25248
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25249
|
+
"div",
|
|
25250
|
+
{
|
|
25251
|
+
className: cn(
|
|
25252
|
+
"text-sm md:text-base",
|
|
25253
|
+
getTextColor(background, "muted"),
|
|
25254
|
+
feature.descriptionClassName
|
|
25255
|
+
),
|
|
25256
|
+
children: feature.description
|
|
25257
|
+
}
|
|
25258
|
+
))
|
|
25200
25259
|
] })
|
|
25201
25260
|
]
|
|
25202
25261
|
},
|
|
@@ -25240,7 +25299,7 @@ function FeatureBadgeGridSix({
|
|
|
25240
25299
|
}
|
|
25241
25300
|
);
|
|
25242
25301
|
}, [actionSlot, action]);
|
|
25243
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
25302
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25244
25303
|
Section,
|
|
25245
25304
|
{
|
|
25246
25305
|
background,
|
|
@@ -25250,71 +25309,169 @@ function FeatureBadgeGridSix({
|
|
|
25250
25309
|
patternClassName,
|
|
25251
25310
|
className,
|
|
25252
25311
|
containerClassName,
|
|
25253
|
-
children: [
|
|
25254
|
-
(label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("
|
|
25312
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25313
|
+
(label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
|
|
25255
25314
|
badgeContent,
|
|
25256
|
-
title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25315
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25316
|
+
"h2",
|
|
25317
|
+
{
|
|
25318
|
+
className: cn(
|
|
25319
|
+
"text-2xl font-bold md:text-3xl lg:text-4xl",
|
|
25320
|
+
titleClassName
|
|
25321
|
+
),
|
|
25322
|
+
children: title
|
|
25323
|
+
}
|
|
25324
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25325
|
+
"div",
|
|
25326
|
+
{
|
|
25327
|
+
className: cn(
|
|
25328
|
+
"text-2xl font-bold md:text-3xl lg:text-4xl",
|
|
25329
|
+
titleClassName
|
|
25330
|
+
),
|
|
25331
|
+
children: title
|
|
25332
|
+
}
|
|
25333
|
+
))
|
|
25257
25334
|
] }),
|
|
25258
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
25259
|
-
|
|
25260
|
-
|
|
25335
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
25336
|
+
"div",
|
|
25337
|
+
{
|
|
25338
|
+
className: cn(
|
|
25339
|
+
"grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
|
|
25340
|
+
gridClassName
|
|
25341
|
+
),
|
|
25342
|
+
children: featuresContent
|
|
25343
|
+
}
|
|
25344
|
+
),
|
|
25345
|
+
(action || actionSlot) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
25346
|
+
"div",
|
|
25347
|
+
{
|
|
25348
|
+
className: cn("mt-8 flex justify-center", actionContainerClassName),
|
|
25349
|
+
children: actionContent
|
|
25350
|
+
}
|
|
25351
|
+
)
|
|
25352
|
+
] })
|
|
25261
25353
|
}
|
|
25262
25354
|
);
|
|
25263
25355
|
}
|
|
25264
25356
|
function FeaturePatternGridLinks({
|
|
25357
|
+
title,
|
|
25358
|
+
description,
|
|
25359
|
+
titleClassName,
|
|
25360
|
+
descriptionClassName,
|
|
25361
|
+
headerClassName,
|
|
25265
25362
|
features,
|
|
25266
25363
|
featuresSlot,
|
|
25267
25364
|
className,
|
|
25268
|
-
|
|
25365
|
+
spacing = "py-12 md:py-32",
|
|
25366
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25269
25367
|
gridClassName,
|
|
25270
25368
|
cardClassName,
|
|
25271
25369
|
background,
|
|
25272
|
-
spacing,
|
|
25273
25370
|
pattern,
|
|
25274
25371
|
patternOpacity,
|
|
25275
25372
|
patternClassName
|
|
25276
25373
|
}) {
|
|
25277
|
-
const renderFeatureIcon = React52.useCallback(
|
|
25278
|
-
|
|
25279
|
-
|
|
25280
|
-
|
|
25281
|
-
|
|
25282
|
-
|
|
25283
|
-
|
|
25284
|
-
|
|
25285
|
-
|
|
25286
|
-
|
|
25287
|
-
|
|
25288
|
-
|
|
25289
|
-
|
|
25290
|
-
|
|
25291
|
-
|
|
25292
|
-
|
|
25293
|
-
|
|
25294
|
-
|
|
25295
|
-
|
|
25296
|
-
|
|
25297
|
-
|
|
25298
|
-
|
|
25374
|
+
const renderFeatureIcon = React52.useCallback(
|
|
25375
|
+
(feature) => {
|
|
25376
|
+
if (feature.icon) return feature.icon;
|
|
25377
|
+
if (feature.iconName)
|
|
25378
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25379
|
+
DynamicIcon,
|
|
25380
|
+
{
|
|
25381
|
+
name: feature.iconName,
|
|
25382
|
+
size: 24,
|
|
25383
|
+
className: feature.iconClassName
|
|
25384
|
+
}
|
|
25385
|
+
);
|
|
25386
|
+
return null;
|
|
25387
|
+
},
|
|
25388
|
+
[]
|
|
25389
|
+
);
|
|
25390
|
+
const renderFeatureLink = React52.useCallback(
|
|
25391
|
+
(feature) => {
|
|
25392
|
+
if (feature.linkSlot) return feature.linkSlot;
|
|
25393
|
+
if (!feature.link && !feature.linkLabel) return null;
|
|
25394
|
+
const label = feature.linkLabel || (feature.link ? "Learn more" : null);
|
|
25395
|
+
if (!label) return null;
|
|
25396
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25397
|
+
Pressable,
|
|
25398
|
+
{
|
|
25399
|
+
href: feature.link,
|
|
25400
|
+
className: cn(
|
|
25401
|
+
"flex items-center gap-2 text-sm font-medium",
|
|
25402
|
+
feature.linkClassName
|
|
25403
|
+
),
|
|
25404
|
+
children: [
|
|
25405
|
+
label,
|
|
25406
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/chevron-right", size: 16 })
|
|
25407
|
+
]
|
|
25408
|
+
}
|
|
25409
|
+
);
|
|
25410
|
+
},
|
|
25411
|
+
[]
|
|
25412
|
+
);
|
|
25299
25413
|
const featuresContent = React52.useMemo(() => {
|
|
25300
25414
|
if (featuresSlot) return featuresSlot;
|
|
25301
25415
|
if (!features || features.length === 0) return null;
|
|
25302
25416
|
return features.map((feature, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25303
25417
|
"div",
|
|
25304
25418
|
{
|
|
25305
|
-
className: cn(
|
|
25419
|
+
className: cn(
|
|
25420
|
+
"flex flex-col gap-10 rounded-lg border p-8",
|
|
25421
|
+
cardClassName,
|
|
25422
|
+
feature.className
|
|
25423
|
+
),
|
|
25306
25424
|
children: [
|
|
25307
25425
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
25308
25426
|
renderFeatureIcon(feature),
|
|
25309
|
-
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25310
|
-
|
|
25427
|
+
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25428
|
+
"h3",
|
|
25429
|
+
{
|
|
25430
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25431
|
+
children: feature.title
|
|
25432
|
+
}
|
|
25433
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25434
|
+
"div",
|
|
25435
|
+
{
|
|
25436
|
+
className: cn("mt-6 mb-2 font-medium", feature.titleClassName),
|
|
25437
|
+
children: feature.title
|
|
25438
|
+
}
|
|
25439
|
+
)),
|
|
25440
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25441
|
+
"p",
|
|
25442
|
+
{
|
|
25443
|
+
className: cn(
|
|
25444
|
+
"text-sm",
|
|
25445
|
+
getTextColor(background, "muted"),
|
|
25446
|
+
feature.descriptionClassName
|
|
25447
|
+
),
|
|
25448
|
+
children: feature.description
|
|
25449
|
+
}
|
|
25450
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25451
|
+
"div",
|
|
25452
|
+
{
|
|
25453
|
+
className: cn(
|
|
25454
|
+
"text-sm",
|
|
25455
|
+
getTextColor(background, "muted"),
|
|
25456
|
+
feature.descriptionClassName
|
|
25457
|
+
),
|
|
25458
|
+
children: feature.description
|
|
25459
|
+
}
|
|
25460
|
+
))
|
|
25311
25461
|
] }),
|
|
25312
25462
|
renderFeatureLink(feature)
|
|
25313
25463
|
]
|
|
25314
25464
|
},
|
|
25315
25465
|
index
|
|
25316
25466
|
));
|
|
25317
|
-
}, [
|
|
25467
|
+
}, [
|
|
25468
|
+
featuresSlot,
|
|
25469
|
+
features,
|
|
25470
|
+
cardClassName,
|
|
25471
|
+
renderFeatureIcon,
|
|
25472
|
+
renderFeatureLink,
|
|
25473
|
+
background
|
|
25474
|
+
]);
|
|
25318
25475
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25319
25476
|
Section,
|
|
25320
25477
|
{
|
|
@@ -25325,7 +25482,55 @@ function FeaturePatternGridLinks({
|
|
|
25325
25482
|
patternClassName,
|
|
25326
25483
|
className,
|
|
25327
25484
|
containerClassName,
|
|
25328
|
-
children: /* @__PURE__ */ jsxRuntime.
|
|
25485
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
25486
|
+
title || description ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25487
|
+
"div",
|
|
25488
|
+
{
|
|
25489
|
+
className: cn(
|
|
25490
|
+
"flex flex-col gap-4 md:gap-6 text-left",
|
|
25491
|
+
headerClassName
|
|
25492
|
+
),
|
|
25493
|
+
children: [
|
|
25494
|
+
title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
25495
|
+
"h2",
|
|
25496
|
+
{
|
|
25497
|
+
className: cn(
|
|
25498
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25499
|
+
titleClassName
|
|
25500
|
+
),
|
|
25501
|
+
children: title
|
|
25502
|
+
}
|
|
25503
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25504
|
+
"div",
|
|
25505
|
+
{
|
|
25506
|
+
className: cn(
|
|
25507
|
+
"text-xl font-semibold text-balance md:text-2xl lg:text-3xl max-w-lg md:max-w-md",
|
|
25508
|
+
titleClassName
|
|
25509
|
+
),
|
|
25510
|
+
children: title
|
|
25511
|
+
}
|
|
25512
|
+
)),
|
|
25513
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg md:max-w-md", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
25514
|
+
"div",
|
|
25515
|
+
{
|
|
25516
|
+
className: cn("max-w-lg md:max-w-md", descriptionClassName),
|
|
25517
|
+
children: description
|
|
25518
|
+
}
|
|
25519
|
+
))
|
|
25520
|
+
]
|
|
25521
|
+
}
|
|
25522
|
+
) : null,
|
|
25523
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
25524
|
+
"div",
|
|
25525
|
+
{
|
|
25526
|
+
className: cn(
|
|
25527
|
+
"grid gap-6 md:grid-cols-2 lg:grid-cols-3",
|
|
25528
|
+
gridClassName
|
|
25529
|
+
),
|
|
25530
|
+
children: featuresContent
|
|
25531
|
+
}
|
|
25532
|
+
)
|
|
25533
|
+
] })
|
|
25329
25534
|
}
|
|
25330
25535
|
);
|
|
25331
25536
|
}
|
|
@@ -25336,7 +25541,6 @@ function FeatureTabbedContentImage({
|
|
|
25336
25541
|
slidesSlot,
|
|
25337
25542
|
defaultTab,
|
|
25338
25543
|
className,
|
|
25339
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25340
25544
|
headerClassName,
|
|
25341
25545
|
titleClassName,
|
|
25342
25546
|
descriptionClassName,
|
|
@@ -25348,6 +25552,7 @@ function FeatureTabbedContentImage({
|
|
|
25348
25552
|
contentGridClassName,
|
|
25349
25553
|
optixFlowConfig,
|
|
25350
25554
|
background,
|
|
25555
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
25351
25556
|
spacing = "py-6 md:py-32",
|
|
25352
25557
|
pattern,
|
|
25353
25558
|
patternOpacity,
|
|
@@ -25610,7 +25815,14 @@ function FeatureUtilityCardsGrid({
|
|
|
25610
25815
|
const renderLabelIcon = React52.useMemo(() => {
|
|
25611
25816
|
if (labelIcon) return labelIcon;
|
|
25612
25817
|
if (labelIconName)
|
|
25613
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25818
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25819
|
+
DynamicIcon,
|
|
25820
|
+
{
|
|
25821
|
+
name: labelIconName,
|
|
25822
|
+
size: 20,
|
|
25823
|
+
className: getAccentColor(background)
|
|
25824
|
+
}
|
|
25825
|
+
);
|
|
25614
25826
|
return null;
|
|
25615
25827
|
}, [labelIcon, labelIconName, background]);
|
|
25616
25828
|
const learnMoreContent = React52.useMemo(() => {
|
|
@@ -25707,10 +25919,19 @@ function FeatureUtilityCardsGrid({
|
|
|
25707
25919
|
headerClassName
|
|
25708
25920
|
),
|
|
25709
25921
|
children: [
|
|
25710
|
-
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25711
|
-
|
|
25712
|
-
|
|
25713
|
-
|
|
25922
|
+
(label || labelIcon || labelIconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
25923
|
+
"div",
|
|
25924
|
+
{
|
|
25925
|
+
className: cn(
|
|
25926
|
+
"text-lg flex items-center gap-4",
|
|
25927
|
+
labelClassName
|
|
25928
|
+
),
|
|
25929
|
+
children: [
|
|
25930
|
+
renderLabelIcon,
|
|
25931
|
+
label && (typeof label === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { children: label }) : /* @__PURE__ */ jsxRuntime.jsx("div", { children: label }))
|
|
25932
|
+
]
|
|
25933
|
+
}
|
|
25934
|
+
),
|
|
25714
25935
|
learnMoreContent
|
|
25715
25936
|
]
|
|
25716
25937
|
}
|
|
@@ -26092,7 +26313,7 @@ function FeatureIconTabsContent({
|
|
|
26092
26313
|
tabsSlot,
|
|
26093
26314
|
defaultTab,
|
|
26094
26315
|
className,
|
|
26095
|
-
containerClassName,
|
|
26316
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26096
26317
|
headerClassName,
|
|
26097
26318
|
badgeClassName,
|
|
26098
26319
|
headingClassName,
|
|
@@ -26103,7 +26324,7 @@ function FeatureIconTabsContent({
|
|
|
26103
26324
|
tabContentClassName,
|
|
26104
26325
|
optixFlowConfig,
|
|
26105
26326
|
background,
|
|
26106
|
-
spacing = "
|
|
26327
|
+
spacing = "pt-14 pb-12 md:pt-32 md:pb-32",
|
|
26107
26328
|
pattern,
|
|
26108
26329
|
patternOpacity,
|
|
26109
26330
|
patternClassName
|
|
@@ -26183,11 +26404,11 @@ function FeatureIconTabsContent({
|
|
|
26183
26404
|
if (!tabs || tabs.length === 0) return null;
|
|
26184
26405
|
const activeDefaultTab = defaultTab || tabs[0]?.value;
|
|
26185
26406
|
return /* @__PURE__ */ jsxRuntime.jsxs(Tabs, { defaultValue: activeDefaultTab, className: "mt-8", children: [
|
|
26186
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "container overflow-x-auto px-4 pb-2 md:px-6", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
26407
|
+
/* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.jsx(
|
|
26187
26408
|
TabsList,
|
|
26188
26409
|
{
|
|
26189
26410
|
className: cn(
|
|
26190
|
-
"inline-flex w-auto
|
|
26411
|
+
"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!",
|
|
26191
26412
|
tabsListClassName
|
|
26192
26413
|
),
|
|
26193
26414
|
children: tabs.map((tab) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -26195,7 +26416,7 @@ function FeatureIconTabsContent({
|
|
|
26195
26416
|
{
|
|
26196
26417
|
value: tab.value,
|
|
26197
26418
|
className: cn(
|
|
26198
|
-
"flex
|
|
26419
|
+
"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",
|
|
26199
26420
|
`data-[state=active]:${getBorderColor(background, "accent")}`,
|
|
26200
26421
|
tabTriggerClassName,
|
|
26201
26422
|
tab.className
|
|
@@ -26209,99 +26430,87 @@ function FeatureIconTabsContent({
|
|
|
26209
26430
|
))
|
|
26210
26431
|
}
|
|
26211
26432
|
) }),
|
|
26212
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
26213
|
-
|
|
26214
|
-
|
|
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
|
-
|
|
26433
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("py-6 md:py-10", contentWrapperClassName), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "p-4 md:p-8 bg-muted/50 rounded-2xl shadow-lg", children: tabs.map((tab) => {
|
|
26434
|
+
if (tab.contentSlot) {
|
|
26435
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
26436
|
+
TabsContent,
|
|
26437
|
+
{
|
|
26438
|
+
value: tab.value,
|
|
26439
|
+
className: tabContentClassName,
|
|
26440
|
+
children: tab.contentSlot
|
|
26441
|
+
},
|
|
26442
|
+
tab.value
|
|
26443
|
+
);
|
|
26444
|
+
}
|
|
26445
|
+
const content = tab.content;
|
|
26446
|
+
if (!content) return null;
|
|
26447
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
26448
|
+
TabsContent,
|
|
26449
|
+
{
|
|
26450
|
+
value: tab.value,
|
|
26451
|
+
className: cn(
|
|
26452
|
+
"grid place-items-start gap-20 lg:grid-cols-2 lg:gap-10",
|
|
26453
|
+
tabContentClassName,
|
|
26454
|
+
content.className
|
|
26455
|
+
),
|
|
26456
|
+
children: [
|
|
26457
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-5", children: [
|
|
26458
|
+
content.badge && /* @__PURE__ */ jsxRuntime.jsx(
|
|
26459
|
+
Badge,
|
|
26460
|
+
{
|
|
26461
|
+
variant: "outline",
|
|
26462
|
+
className: cn("w-fit", content.badgeClassName),
|
|
26463
|
+
children: content.badge
|
|
26464
|
+
}
|
|
26241
26465
|
),
|
|
26242
|
-
|
|
26243
|
-
|
|
26244
|
-
|
|
26245
|
-
|
|
26246
|
-
|
|
26247
|
-
|
|
26248
|
-
className: cn(
|
|
26249
|
-
"w-fit",
|
|
26250
|
-
content.badgeClassName
|
|
26251
|
-
),
|
|
26252
|
-
children: content.badge
|
|
26253
|
-
}
|
|
26466
|
+
content.title && (typeof content.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
26467
|
+
"h3",
|
|
26468
|
+
{
|
|
26469
|
+
className: cn(
|
|
26470
|
+
"text-2xl font-semibold",
|
|
26471
|
+
content.titleClassName
|
|
26254
26472
|
),
|
|
26255
|
-
|
|
26256
|
-
|
|
26257
|
-
|
|
26258
|
-
|
|
26259
|
-
|
|
26260
|
-
|
|
26261
|
-
|
|
26262
|
-
|
|
26263
|
-
|
|
26264
|
-
|
|
26265
|
-
|
|
26266
|
-
|
|
26267
|
-
|
|
26268
|
-
|
|
26269
|
-
|
|
26270
|
-
|
|
26271
|
-
|
|
26272
|
-
|
|
26273
|
-
|
|
26274
|
-
|
|
26275
|
-
|
|
26276
|
-
|
|
26277
|
-
|
|
26278
|
-
|
|
26279
|
-
|
|
26280
|
-
|
|
26281
|
-
|
|
26282
|
-
|
|
26283
|
-
|
|
26284
|
-
)
|
|
26285
|
-
|
|
26286
|
-
|
|
26287
|
-
|
|
26288
|
-
|
|
26289
|
-
|
|
26290
|
-
|
|
26291
|
-
|
|
26292
|
-
|
|
26293
|
-
|
|
26294
|
-
|
|
26295
|
-
|
|
26296
|
-
] }),
|
|
26297
|
-
(content.imageSlot || content.imageSrc) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative h-[300px] w-full lg:h-[400px]", children: renderTabContentImage(content) })
|
|
26298
|
-
]
|
|
26299
|
-
},
|
|
26300
|
-
tab.value
|
|
26301
|
-
);
|
|
26302
|
-
}) })
|
|
26303
|
-
}
|
|
26304
|
-
)
|
|
26473
|
+
children: content.title
|
|
26474
|
+
}
|
|
26475
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
26476
|
+
"div",
|
|
26477
|
+
{
|
|
26478
|
+
className: cn(
|
|
26479
|
+
"text-2xl font-semibold",
|
|
26480
|
+
content.titleClassName
|
|
26481
|
+
),
|
|
26482
|
+
children: content.title
|
|
26483
|
+
}
|
|
26484
|
+
)),
|
|
26485
|
+
content.description && (typeof content.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
26486
|
+
"p",
|
|
26487
|
+
{
|
|
26488
|
+
className: cn(
|
|
26489
|
+
"lg:text-lg",
|
|
26490
|
+
getTextColor(background, "muted"),
|
|
26491
|
+
content.descriptionClassName
|
|
26492
|
+
),
|
|
26493
|
+
children: content.description
|
|
26494
|
+
}
|
|
26495
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
26496
|
+
"div",
|
|
26497
|
+
{
|
|
26498
|
+
className: cn(
|
|
26499
|
+
"lg:text-lg",
|
|
26500
|
+
getTextColor(background, "muted"),
|
|
26501
|
+
content.descriptionClassName
|
|
26502
|
+
),
|
|
26503
|
+
children: content.description
|
|
26504
|
+
}
|
|
26505
|
+
)),
|
|
26506
|
+
(content.actionsSlot || content.actions && content.actions.length > 0) && renderTabContentActions(content)
|
|
26507
|
+
] }),
|
|
26508
|
+
(content.imageSlot || content.imageSrc) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative h-[300px] w-full lg:h-[400px]", children: renderTabContentImage(content) })
|
|
26509
|
+
]
|
|
26510
|
+
},
|
|
26511
|
+
tab.value
|
|
26512
|
+
);
|
|
26513
|
+
}) }) })
|
|
26305
26514
|
] });
|
|
26306
26515
|
}, [
|
|
26307
26516
|
tabsSlot,
|
|
@@ -26315,7 +26524,7 @@ function FeatureIconTabsContent({
|
|
|
26315
26524
|
renderTabContentActions,
|
|
26316
26525
|
renderTabContentImage
|
|
26317
26526
|
]);
|
|
26318
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
26527
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
26319
26528
|
Section,
|
|
26320
26529
|
{
|
|
26321
26530
|
background,
|
|
@@ -26324,8 +26533,8 @@ function FeatureIconTabsContent({
|
|
|
26324
26533
|
patternOpacity,
|
|
26325
26534
|
patternClassName,
|
|
26326
26535
|
className,
|
|
26327
|
-
containerClassName
|
|
26328
|
-
children: [
|
|
26536
|
+
containerClassName,
|
|
26537
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
26329
26538
|
(badge || heading || description) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
26330
26539
|
"div",
|
|
26331
26540
|
{
|
|
@@ -26339,7 +26548,7 @@ function FeatureIconTabsContent({
|
|
|
26339
26548
|
"h1",
|
|
26340
26549
|
{
|
|
26341
26550
|
className: cn(
|
|
26342
|
-
"max-w-
|
|
26551
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26343
26552
|
headingClassName
|
|
26344
26553
|
),
|
|
26345
26554
|
children: heading
|
|
@@ -26348,24 +26557,18 @@ function FeatureIconTabsContent({
|
|
|
26348
26557
|
"div",
|
|
26349
26558
|
{
|
|
26350
26559
|
className: cn(
|
|
26351
|
-
"max-w-
|
|
26560
|
+
"max-w-4xl text-3xl font-semibold md:text-6xl text-balance",
|
|
26352
26561
|
headingClassName
|
|
26353
26562
|
),
|
|
26354
26563
|
children: heading
|
|
26355
26564
|
}
|
|
26356
26565
|
)),
|
|
26357
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn(
|
|
26358
|
-
"div",
|
|
26359
|
-
{
|
|
26360
|
-
className: cn(getTextColor(background, "muted"), descriptionClassName),
|
|
26361
|
-
children: description
|
|
26362
|
-
}
|
|
26363
|
-
))
|
|
26566
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-balance", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-balance", descriptionClassName), children: description }))
|
|
26364
26567
|
]
|
|
26365
26568
|
}
|
|
26366
26569
|
),
|
|
26367
26570
|
tabsContent
|
|
26368
|
-
]
|
|
26571
|
+
] })
|
|
26369
26572
|
}
|
|
26370
26573
|
);
|
|
26371
26574
|
}
|
|
@@ -26633,7 +26836,6 @@ function FeatureCategoryImageCards({
|
|
|
26633
26836
|
features,
|
|
26634
26837
|
featuresSlot,
|
|
26635
26838
|
className,
|
|
26636
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26637
26839
|
headerClassName,
|
|
26638
26840
|
badgeClassName,
|
|
26639
26841
|
titleClassName,
|
|
@@ -26642,6 +26844,7 @@ function FeatureCategoryImageCards({
|
|
|
26642
26844
|
cardClassName,
|
|
26643
26845
|
optixFlowConfig,
|
|
26644
26846
|
background,
|
|
26847
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
26645
26848
|
spacing = "py-12 md:py-32",
|
|
26646
26849
|
pattern,
|
|
26647
26850
|
patternOpacity,
|
|
@@ -26928,14 +27131,14 @@ function FeatureImageCardsThreeColumn({
|
|
|
26928
27131
|
cards,
|
|
26929
27132
|
cardsSlot,
|
|
26930
27133
|
className,
|
|
26931
|
-
containerClassName,
|
|
27134
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
27135
|
+
spacing = "py-12 md:py-32",
|
|
26932
27136
|
titleClassName,
|
|
26933
27137
|
descriptionClassName,
|
|
26934
27138
|
gridClassName,
|
|
26935
27139
|
cardClassName,
|
|
26936
27140
|
optixFlowConfig,
|
|
26937
27141
|
background,
|
|
26938
|
-
spacing,
|
|
26939
27142
|
pattern,
|
|
26940
27143
|
patternOpacity,
|
|
26941
27144
|
patternClassName
|
|
@@ -26949,7 +27152,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
26949
27152
|
{
|
|
26950
27153
|
src: card.imageSrc,
|
|
26951
27154
|
alt: imageAlt,
|
|
26952
|
-
className: "h-full max-h-[450px] w-full rounded-xl object-cover object-center",
|
|
27155
|
+
className: "h-full max-h-[450px] min-h-80 w-full rounded-xl object-cover object-center",
|
|
26953
27156
|
loading: "lazy",
|
|
26954
27157
|
optixFlowConfig
|
|
26955
27158
|
}
|
|
@@ -26964,7 +27167,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
26964
27167
|
}
|
|
26965
27168
|
if (card.icon) return card.icon;
|
|
26966
27169
|
if (!card.iconName) return null;
|
|
26967
|
-
return /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: card.iconName, size:
|
|
27170
|
+
return /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: card.iconName, size: 18 });
|
|
26968
27171
|
},
|
|
26969
27172
|
[]
|
|
26970
27173
|
);
|
|
@@ -26985,18 +27188,25 @@ function FeatureImageCardsThreeColumn({
|
|
|
26985
27188
|
),
|
|
26986
27189
|
children: [
|
|
26987
27190
|
renderImage(card, imageAlt),
|
|
26988
|
-
/* @__PURE__ */ jsxRuntime.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" }),
|
|
27191
|
+
/* @__PURE__ */ jsxRuntime.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" }),
|
|
26989
27192
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute top-0 flex h-full w-full flex-col justify-between p-4 md:p-6", children: [
|
|
26990
|
-
(card.badgeText || card.avatarSrc || card.icon || card.iconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
26991
|
-
|
|
26992
|
-
|
|
26993
|
-
|
|
26994
|
-
|
|
27193
|
+
(card.badgeText || card.avatarSrc || card.icon || card.iconName) && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
27194
|
+
Badge,
|
|
27195
|
+
{
|
|
27196
|
+
variant: "default",
|
|
27197
|
+
className: cn("py-1 px-4", card.badgeClassName),
|
|
27198
|
+
children: [
|
|
27199
|
+
renderBadgeIcon(card),
|
|
27200
|
+
card.badgeText
|
|
27201
|
+
]
|
|
27202
|
+
}
|
|
27203
|
+
),
|
|
27204
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2 md:gap-4", children: [
|
|
26995
27205
|
card.title && (typeof card.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
26996
27206
|
"h3",
|
|
26997
27207
|
{
|
|
26998
27208
|
className: cn(
|
|
26999
|
-
"text-
|
|
27209
|
+
"text-lg md:text-xl font-semibold",
|
|
27000
27210
|
card.titleClassName
|
|
27001
27211
|
),
|
|
27002
27212
|
children: card.title
|
|
@@ -27005,20 +27215,19 @@ function FeatureImageCardsThreeColumn({
|
|
|
27005
27215
|
"div",
|
|
27006
27216
|
{
|
|
27007
27217
|
className: cn(
|
|
27008
|
-
"text-
|
|
27218
|
+
"text-lg md:text-xl font-semibold",
|
|
27009
27219
|
card.titleClassName
|
|
27010
27220
|
),
|
|
27011
27221
|
children: card.title
|
|
27012
27222
|
}
|
|
27013
27223
|
)),
|
|
27014
27224
|
card.linkText && card.link && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
27015
|
-
|
|
27225
|
+
"div",
|
|
27016
27226
|
{
|
|
27017
27227
|
className: cn(
|
|
27018
|
-
"font-bold text-xs uppercase",
|
|
27228
|
+
"font-bold text-xs uppercase flex items-center gap-2",
|
|
27019
27229
|
card.linkClassName
|
|
27020
27230
|
),
|
|
27021
|
-
href: card.link,
|
|
27022
27231
|
children: [
|
|
27023
27232
|
card.linkText,
|
|
27024
27233
|
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/arrow-up-right", size: 18 })
|
|
@@ -27049,7 +27258,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27049
27258
|
"h2",
|
|
27050
27259
|
{
|
|
27051
27260
|
className: cn(
|
|
27052
|
-
"text-
|
|
27261
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27053
27262
|
titleClassName
|
|
27054
27263
|
),
|
|
27055
27264
|
children: title
|
|
@@ -27058,7 +27267,7 @@ function FeatureImageCardsThreeColumn({
|
|
|
27058
27267
|
"div",
|
|
27059
27268
|
{
|
|
27060
27269
|
className: cn(
|
|
27061
|
-
"text-
|
|
27270
|
+
"text-2xl font-semibold text-balance md:text-3xl lg:text-4xl max-w-lg md:max-w-md",
|
|
27062
27271
|
titleClassName
|
|
27063
27272
|
),
|
|
27064
27273
|
children: title
|
|
@@ -27204,7 +27413,7 @@ function FeatureIconGridMuted({
|
|
|
27204
27413
|
"div",
|
|
27205
27414
|
{
|
|
27206
27415
|
className: cn(
|
|
27207
|
-
"mx-auto
|
|
27416
|
+
"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",
|
|
27208
27417
|
gridClassName
|
|
27209
27418
|
),
|
|
27210
27419
|
children: featuresContent
|
|
@@ -27578,8 +27787,8 @@ function FeatureCapabilitiesGrid({
|
|
|
27578
27787
|
items,
|
|
27579
27788
|
itemsSlot,
|
|
27580
27789
|
className,
|
|
27581
|
-
containerClassName = "px-
|
|
27582
|
-
spacing = "py-
|
|
27790
|
+
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",
|
|
27791
|
+
spacing = "py-12 md:py-32",
|
|
27583
27792
|
eyebrowClassName,
|
|
27584
27793
|
headingClassName,
|
|
27585
27794
|
gridClassName,
|
|
@@ -27606,7 +27815,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27606
27815
|
Card,
|
|
27607
27816
|
{
|
|
27608
27817
|
className: cn(
|
|
27609
|
-
"group relative rounded-md overflow-visible border-border/10 bg-
|
|
27818
|
+
"group relative rounded-md overflow-visible border-border/10 bg-card text-card-foreground p-0 transition-colors duration-300 hover:border-border/20",
|
|
27610
27819
|
cardClassName,
|
|
27611
27820
|
item.className
|
|
27612
27821
|
),
|
|
@@ -27624,7 +27833,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27624
27833
|
"div",
|
|
27625
27834
|
{
|
|
27626
27835
|
className: cn(
|
|
27627
|
-
"flex h-10 w-10 items-center justify-center rounded-xl border
|
|
27836
|
+
"flex h-10 w-10 items-center justify-center rounded-xl border ",
|
|
27628
27837
|
item.iconClassName
|
|
27629
27838
|
),
|
|
27630
27839
|
children: iconContent
|
|
@@ -27653,7 +27862,7 @@ function FeatureCapabilitiesGrid({
|
|
|
27653
27862
|
"span",
|
|
27654
27863
|
{
|
|
27655
27864
|
className: cn(
|
|
27656
|
-
"rounded-full border
|
|
27865
|
+
"rounded-full border px-2 py-0.5 text-[10px] leading-none",
|
|
27657
27866
|
item.badgeClassName
|
|
27658
27867
|
),
|
|
27659
27868
|
children: item.badge
|
|
@@ -27698,7 +27907,6 @@ function FeatureCapabilitiesGrid({
|
|
|
27698
27907
|
patternClassName,
|
|
27699
27908
|
className,
|
|
27700
27909
|
containerClassName,
|
|
27701
|
-
containerMaxWidth: "lg",
|
|
27702
27910
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
|
|
27703
27911
|
eyebrow || heading ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-4 md:space-y-6", children: [
|
|
27704
27912
|
eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm tracking-widest", eyebrowClassName), children: eyebrow }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -34537,7 +34745,8 @@ function CarouselScaleFocus({
|
|
|
34537
34745
|
indicatorClassName,
|
|
34538
34746
|
startIndex = 1,
|
|
34539
34747
|
background,
|
|
34540
|
-
|
|
34748
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
34749
|
+
spacing = "py-12 md:py-32",
|
|
34541
34750
|
pattern,
|
|
34542
34751
|
patternOpacity,
|
|
34543
34752
|
patternClassName,
|
|
@@ -34647,7 +34856,7 @@ function CarouselScaleFocus({
|
|
|
34647
34856
|
patternOpacity,
|
|
34648
34857
|
patternClassName,
|
|
34649
34858
|
className: cn("overflow-hidden", className),
|
|
34650
|
-
containerClassName
|
|
34859
|
+
containerClassName,
|
|
34651
34860
|
children: [
|
|
34652
34861
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:px-45", children: [
|
|
34653
34862
|
title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
|