@opensite/ui 2.7.1 → 2.7.2
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/about-interactive-tabs.cjs +12 -12
- package/dist/about-interactive-tabs.js +12 -12
- package/dist/about-network-spotlight.cjs +632 -655
- package/dist/about-network-spotlight.js +630 -653
- package/dist/about-story-expertise.cjs +12 -20
- package/dist/about-story-expertise.js +12 -20
- package/dist/blog-carousel-apple.cjs +11 -8
- package/dist/blog-carousel-apple.js +11 -8
- package/dist/blog-masonry-featured.cjs +4 -4
- package/dist/blog-masonry-featured.js +4 -4
- package/dist/blog-tech-insights.cjs +48 -63
- package/dist/blog-tech-insights.d.cts +1 -1
- package/dist/blog-tech-insights.d.ts +1 -1
- package/dist/blog-tech-insights.js +48 -63
- package/dist/carousel-scrolling-feature-showcase.cjs +3 -3
- package/dist/carousel-scrolling-feature-showcase.js +3 -3
- package/dist/faq-split-help.cjs +17 -42
- package/dist/faq-split-help.d.cts +1 -1
- package/dist/faq-split-help.d.ts +1 -1
- package/dist/faq-split-help.js +17 -42
- package/dist/registry.cjs +163 -219
- package/dist/registry.js +163 -219
- package/dist/stats-impact-grid.cjs +44 -92
- package/dist/stats-impact-grid.js +44 -92
- package/package.json +1 -1
package/dist/registry.js
CHANGED
|
@@ -8727,7 +8727,10 @@ function AboutInteractiveTabs({
|
|
|
8727
8727
|
"div",
|
|
8728
8728
|
{
|
|
8729
8729
|
className: cn(
|
|
8730
|
-
"flex
|
|
8730
|
+
"flex sm:justify-center",
|
|
8731
|
+
"border-b border-border/50",
|
|
8732
|
+
"-mx-4 px-4 sm:mx-0 sm:px-0",
|
|
8733
|
+
"overflow-x-auto gap-2 scrollbar-none",
|
|
8731
8734
|
tabsContainerClassName
|
|
8732
8735
|
),
|
|
8733
8736
|
children: tabs.map((tab) => /* @__PURE__ */ jsx(
|
|
@@ -8735,7 +8738,8 @@ function AboutInteractiveTabs({
|
|
|
8735
8738
|
{
|
|
8736
8739
|
onClick: () => handleTabChange(tab.id),
|
|
8737
8740
|
className: cn(
|
|
8738
|
-
"shrink-0 whitespace-nowrap px-6 py-3
|
|
8741
|
+
"shrink-0 whitespace-nowrap px-6 py-3",
|
|
8742
|
+
"text-sm font-medium transition-colors rounded-t-lg",
|
|
8739
8743
|
activeTab === tab.id ? cn(
|
|
8740
8744
|
"border-b-2 border-primary",
|
|
8741
8745
|
"bg-primary text-primary-foreground",
|
|
@@ -8743,7 +8747,8 @@ function AboutInteractiveTabs({
|
|
|
8743
8747
|
) : cn(
|
|
8744
8748
|
"border-b-2 border-muted",
|
|
8745
8749
|
"bg-muted text-muted-foreground",
|
|
8746
|
-
"hover:bg-primary hover:text-primary-foreground hover:border-primary"
|
|
8750
|
+
"hover:bg-primary hover:text-primary-foreground hover:border-primary",
|
|
8751
|
+
"cursor-pointer"
|
|
8747
8752
|
),
|
|
8748
8753
|
tabButtonClassName
|
|
8749
8754
|
),
|
|
@@ -8762,20 +8767,14 @@ function AboutInteractiveTabs({
|
|
|
8762
8767
|
),
|
|
8763
8768
|
children: [
|
|
8764
8769
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
8765
|
-
typeof activeContent.title === "string" ? /* @__PURE__ */ jsx(
|
|
8766
|
-
"h2",
|
|
8767
|
-
{
|
|
8768
|
-
className: cn("text-3xl font-bold", tabContentTitleClassName),
|
|
8769
|
-
children: activeContent.title
|
|
8770
|
-
}
|
|
8771
|
-
) : /* @__PURE__ */ jsx("div", { className: tabContentTitleClassName, children: activeContent.title }),
|
|
8770
|
+
typeof activeContent.title === "string" ? /* @__PURE__ */ jsx("h2", { className: cn("font-bold", tabContentTitleClassName), children: activeContent.title }) : activeContent.title,
|
|
8772
8771
|
typeof activeContent.description === "string" ? /* @__PURE__ */ jsx(
|
|
8773
8772
|
"p",
|
|
8774
8773
|
{
|
|
8775
8774
|
className: cn("mt-4 text-lg", tabContentDescriptionClassName),
|
|
8776
8775
|
children: activeContent.description
|
|
8777
8776
|
}
|
|
8778
|
-
) :
|
|
8777
|
+
) : activeContent.description
|
|
8779
8778
|
] }),
|
|
8780
8779
|
activeContent.image && /* @__PURE__ */ jsx(
|
|
8781
8780
|
Img,
|
|
@@ -8783,7 +8782,8 @@ function AboutInteractiveTabs({
|
|
|
8783
8782
|
src: activeContent.image.src,
|
|
8784
8783
|
alt: activeContent.image.alt,
|
|
8785
8784
|
className: cn(
|
|
8786
|
-
"w-full h-
|
|
8785
|
+
"aspect-video w-full h-full",
|
|
8786
|
+
"rounded-2xl shadow-xl object-cover",
|
|
8787
8787
|
tabContentImageClassName
|
|
8788
8788
|
),
|
|
8789
8789
|
optixFlowConfig
|
|
@@ -8977,7 +8977,7 @@ function AboutStoryExpertise({
|
|
|
8977
8977
|
className,
|
|
8978
8978
|
background,
|
|
8979
8979
|
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
8980
|
-
spacing = "
|
|
8980
|
+
spacing = "hero",
|
|
8981
8981
|
pattern,
|
|
8982
8982
|
patternOpacity,
|
|
8983
8983
|
optixFlowConfig
|
|
@@ -8996,6 +8996,7 @@ function AboutStoryExpertise({
|
|
|
8996
8996
|
"div",
|
|
8997
8997
|
{
|
|
8998
8998
|
className: cn(
|
|
8999
|
+
"bg-card text-card-foreground",
|
|
8999
9000
|
"rounded-2xl border border-border/60 p-6 shadow-xl",
|
|
9000
9001
|
highlightClassName
|
|
9001
9002
|
),
|
|
@@ -9012,7 +9013,7 @@ function AboutStoryExpertise({
|
|
|
9012
9013
|
children: highlight.label
|
|
9013
9014
|
}
|
|
9014
9015
|
) : highlight.label),
|
|
9015
|
-
highlight.title && (typeof highlight.title === "string" ? /* @__PURE__ */ jsx("
|
|
9016
|
+
highlight.title && (typeof highlight.title === "string" ? /* @__PURE__ */ jsx("div", { className: "text-lg font-bold", children: highlight.title }) : highlight.title)
|
|
9016
9017
|
] })
|
|
9017
9018
|
] }),
|
|
9018
9019
|
highlight.description && (typeof highlight.description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm"), children: highlight.description }) : highlight.description)
|
|
@@ -9037,7 +9038,7 @@ function AboutStoryExpertise({
|
|
|
9037
9038
|
whileInView: { opacity: 1, scale: 1 },
|
|
9038
9039
|
viewport: { once: true, margin: "-50px" },
|
|
9039
9040
|
transition: { duration: 0.3, delay: idx * 0.05 },
|
|
9040
|
-
className: "flex items-start gap-4 rounded-2xl bg-
|
|
9041
|
+
className: "flex items-start gap-4 rounded-2xl bg-card text-card-foreground p-6 shadow-md transition-all duration-300 hover:shadow-xl",
|
|
9041
9042
|
children: [
|
|
9042
9043
|
/* @__PURE__ */ jsx(
|
|
9043
9044
|
"div",
|
|
@@ -9049,7 +9050,7 @@ function AboutStoryExpertise({
|
|
|
9049
9050
|
}
|
|
9050
9051
|
),
|
|
9051
9052
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
9052
|
-
area.title && (typeof area.title === "string" ? /* @__PURE__ */ jsx("
|
|
9053
|
+
area.title && (typeof area.title === "string" ? /* @__PURE__ */ jsx("div", { className: "text-lg font-bold", children: area.title }) : area.title),
|
|
9053
9054
|
area.description && (typeof area.description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("mt-1 text-sm"), children: area.description }) : /* @__PURE__ */ jsx("div", { className: "mt-1", children: area.description }))
|
|
9054
9055
|
] })
|
|
9055
9056
|
]
|
|
@@ -9064,7 +9065,7 @@ function AboutStoryExpertise({
|
|
|
9064
9065
|
{
|
|
9065
9066
|
background,
|
|
9066
9067
|
spacing,
|
|
9067
|
-
className
|
|
9068
|
+
className,
|
|
9068
9069
|
pattern,
|
|
9069
9070
|
patternOpacity,
|
|
9070
9071
|
containerClassName,
|
|
@@ -9089,7 +9090,7 @@ function AboutStoryExpertise({
|
|
|
9089
9090
|
),
|
|
9090
9091
|
children: eyebrow
|
|
9091
9092
|
}
|
|
9092
|
-
) :
|
|
9093
|
+
) : eyebrow),
|
|
9093
9094
|
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
9094
9095
|
"h2",
|
|
9095
9096
|
{
|
|
@@ -9099,7 +9100,7 @@ function AboutStoryExpertise({
|
|
|
9099
9100
|
),
|
|
9100
9101
|
children: heading
|
|
9101
9102
|
}
|
|
9102
|
-
) :
|
|
9103
|
+
) : heading)
|
|
9103
9104
|
] }),
|
|
9104
9105
|
storyContent,
|
|
9105
9106
|
/* @__PURE__ */ jsx(
|
|
@@ -9125,7 +9126,8 @@ function AboutStoryExpertise({
|
|
|
9125
9126
|
"div",
|
|
9126
9127
|
{
|
|
9127
9128
|
className: cn(
|
|
9128
|
-
"relative overflow-hidden rounded-3xl
|
|
9129
|
+
"relative overflow-hidden rounded-3xl",
|
|
9130
|
+
"border border-border shadow-2xl aspect-square",
|
|
9129
9131
|
imageClassName
|
|
9130
9132
|
),
|
|
9131
9133
|
children: [
|
|
@@ -9155,7 +9157,6 @@ function AboutStoryExpertise({
|
|
|
9155
9157
|
),
|
|
9156
9158
|
children: [
|
|
9157
9159
|
/* @__PURE__ */ jsxs("div", { className: "text-center", children: [
|
|
9158
|
-
/* @__PURE__ */ jsx("p", { className: cn("text-sm font-semibold uppercase tracking-[0.2em]"), children: "Our Expertise" }),
|
|
9159
9160
|
expertiseHeading && (typeof expertiseHeading === "string" ? /* @__PURE__ */ jsx(
|
|
9160
9161
|
"h3",
|
|
9161
9162
|
{
|
|
@@ -9165,7 +9166,7 @@ function AboutStoryExpertise({
|
|
|
9165
9166
|
),
|
|
9166
9167
|
children: expertiseHeading
|
|
9167
9168
|
}
|
|
9168
|
-
) :
|
|
9169
|
+
) : expertiseHeading),
|
|
9169
9170
|
expertiseDescription && (typeof expertiseDescription === "string" ? /* @__PURE__ */ jsx(
|
|
9170
9171
|
"p",
|
|
9171
9172
|
{
|
|
@@ -9175,16 +9176,7 @@ function AboutStoryExpertise({
|
|
|
9175
9176
|
),
|
|
9176
9177
|
children: expertiseDescription
|
|
9177
9178
|
}
|
|
9178
|
-
) :
|
|
9179
|
-
"div",
|
|
9180
|
-
{
|
|
9181
|
-
className: cn(
|
|
9182
|
-
"mx-auto mt-3 max-w-2xl",
|
|
9183
|
-
expertiseDescriptionClassName
|
|
9184
|
-
),
|
|
9185
|
-
children: expertiseDescription
|
|
9186
|
-
}
|
|
9187
|
-
))
|
|
9179
|
+
) : expertiseDescription)
|
|
9188
9180
|
] }),
|
|
9189
9181
|
expertiseAreasContent
|
|
9190
9182
|
]
|
|
@@ -9224,12 +9216,14 @@ function AboutNetworkSpotlight({
|
|
|
9224
9216
|
const highlightsContent = useMemo(() => {
|
|
9225
9217
|
if (highlightsSlot) return highlightsSlot;
|
|
9226
9218
|
if (!highlights || highlights.length === 0) return null;
|
|
9227
|
-
return /* @__PURE__ */ jsx("ul", { className: cn("mt-6 space-y-3", highlightsClassName), children: highlights.map((item, index) => /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-3
|
|
9219
|
+
return /* @__PURE__ */ jsx("ul", { className: cn("mt-6 space-y-6 md:space-y-3", highlightsClassName), children: highlights.map((item, index) => /* @__PURE__ */ jsxs("li", { className: "flex items-start gap-3", children: [
|
|
9228
9220
|
/* @__PURE__ */ jsx(
|
|
9229
9221
|
"span",
|
|
9230
9222
|
{
|
|
9231
9223
|
className: cn(
|
|
9232
|
-
"
|
|
9224
|
+
"flex items-center justify-center shrink-0",
|
|
9225
|
+
"bg-primary text-primary-foreground",
|
|
9226
|
+
"size-fit p-2 rounded-full"
|
|
9233
9227
|
),
|
|
9234
9228
|
children: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/check", size: 14 })
|
|
9235
9229
|
}
|
|
@@ -9237,34 +9231,6 @@ function AboutNetworkSpotlight({
|
|
|
9237
9231
|
/* @__PURE__ */ jsx("span", { children: item })
|
|
9238
9232
|
] }, index)) });
|
|
9239
9233
|
}, [highlightsSlot, highlights, highlightsClassName]);
|
|
9240
|
-
useMemo(() => {
|
|
9241
|
-
if (actionsSlot) return actionsSlot;
|
|
9242
|
-
if (!actions || actions.length === 0) return null;
|
|
9243
|
-
return actions.map((action, index) => {
|
|
9244
|
-
const {
|
|
9245
|
-
label,
|
|
9246
|
-
icon,
|
|
9247
|
-
iconAfter,
|
|
9248
|
-
children,
|
|
9249
|
-
className: actionClassName,
|
|
9250
|
-
...pressableProps
|
|
9251
|
-
} = action;
|
|
9252
|
-
return /* @__PURE__ */ jsx(
|
|
9253
|
-
Pressable,
|
|
9254
|
-
{
|
|
9255
|
-
className: actionClassName,
|
|
9256
|
-
asButton: true,
|
|
9257
|
-
...pressableProps,
|
|
9258
|
-
children: children ?? /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
9259
|
-
icon,
|
|
9260
|
-
label,
|
|
9261
|
-
iconAfter
|
|
9262
|
-
] })
|
|
9263
|
-
},
|
|
9264
|
-
index
|
|
9265
|
-
);
|
|
9266
|
-
});
|
|
9267
|
-
}, [actionsSlot, actions]);
|
|
9268
9234
|
const spotlightCardContent = useMemo(() => {
|
|
9269
9235
|
if (spotlightCardSlot) return spotlightCardSlot;
|
|
9270
9236
|
if (!spotlightCard) return null;
|
|
@@ -9272,23 +9238,26 @@ function AboutNetworkSpotlight({
|
|
|
9272
9238
|
"div",
|
|
9273
9239
|
{
|
|
9274
9240
|
className: cn(
|
|
9275
|
-
"
|
|
9241
|
+
"bg-card text-card-foreground",
|
|
9242
|
+
"rounded-2xl border p-5 backdrop-blur-sm",
|
|
9276
9243
|
spotlightCardClassName
|
|
9277
9244
|
),
|
|
9278
9245
|
children: [
|
|
9279
9246
|
/* @__PURE__ */ jsxs("div", { className: "mb-2 flex items-center gap-3", children: [
|
|
9280
|
-
/* @__PURE__ */ jsx(
|
|
9247
|
+
spotlightCard.icon && /* @__PURE__ */ jsx(
|
|
9281
9248
|
"div",
|
|
9282
9249
|
{
|
|
9283
9250
|
className: cn(
|
|
9284
|
-
"flex
|
|
9251
|
+
"flex items-center justify-center shrink-0",
|
|
9252
|
+
"bg-primary text-primary-foreground",
|
|
9253
|
+
"size-fit p-2 rounded-full"
|
|
9285
9254
|
),
|
|
9286
9255
|
children: spotlightCard.icon
|
|
9287
9256
|
}
|
|
9288
9257
|
),
|
|
9289
9258
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
9290
9259
|
typeof spotlightCard.label === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-xs font-bold uppercase tracking-[0.2em]"), children: spotlightCard.label }) : spotlightCard.label,
|
|
9291
|
-
typeof spotlightCard.title === "string" ? /* @__PURE__ */ jsx("
|
|
9260
|
+
typeof spotlightCard.title === "string" ? /* @__PURE__ */ jsx("div", { className: "text-lg font-bold text-background", children: spotlightCard.title }) : spotlightCard.title
|
|
9292
9261
|
] })
|
|
9293
9262
|
] }),
|
|
9294
9263
|
typeof spotlightCard.description === "string" ? /* @__PURE__ */ jsx("p", { className: "text-sm text-background/80", children: spotlightCard.description }) : spotlightCard.description
|
|
@@ -9320,7 +9289,7 @@ function AboutNetworkSpotlight({
|
|
|
9320
9289
|
whileInView: { opacity: 1, x: 0 },
|
|
9321
9290
|
viewport: { once: true, margin: "-50px" },
|
|
9322
9291
|
transition: { duration: 0.5 },
|
|
9323
|
-
children: /* @__PURE__ */ jsxs("div", { className: "relative overflow-hidden rounded-3xl
|
|
9292
|
+
children: /* @__PURE__ */ jsxs("div", { className: "relative overflow-hidden rounded-3xl shadow-2xl aspect-square", children: [
|
|
9324
9293
|
/* @__PURE__ */ jsx(
|
|
9325
9294
|
Img,
|
|
9326
9295
|
{
|
|
@@ -21842,7 +21811,7 @@ function CarouselScrollingFeatureShowcase({
|
|
|
21842
21811
|
"div",
|
|
21843
21812
|
{
|
|
21844
21813
|
className: cn(
|
|
21845
|
-
"aspect-square overflow-hidden rounded-xl",
|
|
21814
|
+
"aspect-square overflow-hidden rounded-xl shadow-xl",
|
|
21846
21815
|
imageClassName
|
|
21847
21816
|
),
|
|
21848
21817
|
children: /* @__PURE__ */ jsx(AnimatePresence, { mode: "wait", children: activeFeatureData && /* @__PURE__ */ jsx(
|
|
@@ -21881,7 +21850,7 @@ function CarouselScrollingFeatureShowcase({
|
|
|
21881
21850
|
feature.className
|
|
21882
21851
|
),
|
|
21883
21852
|
children: [
|
|
21884
|
-
/* @__PURE__ */ jsx("div", { className: "mb-6 lg:hidden", children: /* @__PURE__ */ jsx("div", { className: "aspect-video overflow-hidden rounded-
|
|
21853
|
+
/* @__PURE__ */ jsx("div", { className: "mb-6 lg:hidden", children: /* @__PURE__ */ jsx("div", { className: "aspect-video overflow-hidden rounded-xl shadow-xl", children: /* @__PURE__ */ jsx(
|
|
21885
21854
|
Img,
|
|
21886
21855
|
{
|
|
21887
21856
|
src: feature.image,
|
|
@@ -21906,7 +21875,7 @@ function CarouselScrollingFeatureShowcase({
|
|
|
21906
21875
|
),
|
|
21907
21876
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
21908
21877
|
feature.title && (typeof feature.title === "string" ? /* @__PURE__ */ jsx("h3", { className: "text-xl md:text-2xl font-semibold", children: feature.title }) : feature.title),
|
|
21909
|
-
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx("p", { className: "mt-4 text-lg", children: feature.description }) : feature.description)
|
|
21878
|
+
feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx("p", { className: "mt-4 text-base md:text-lg", children: feature.description }) : feature.description)
|
|
21910
21879
|
] })
|
|
21911
21880
|
] })
|
|
21912
21881
|
]
|
|
@@ -36046,7 +36015,6 @@ function BlogTechInsights({
|
|
|
36046
36015
|
secondaryPosts,
|
|
36047
36016
|
secondaryPostsSlot,
|
|
36048
36017
|
className,
|
|
36049
|
-
containerClassName,
|
|
36050
36018
|
headerClassName,
|
|
36051
36019
|
headingClassName,
|
|
36052
36020
|
descriptionClassName,
|
|
@@ -36058,7 +36026,8 @@ function BlogTechInsights({
|
|
|
36058
36026
|
secondaryPostItemClassName,
|
|
36059
36027
|
optixFlowConfig,
|
|
36060
36028
|
background,
|
|
36061
|
-
|
|
36029
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
36030
|
+
spacing = "lg",
|
|
36062
36031
|
pattern,
|
|
36063
36032
|
patternOpacity
|
|
36064
36033
|
}) {
|
|
@@ -36077,11 +36046,7 @@ function BlogTechInsights({
|
|
|
36077
36046
|
Pressable,
|
|
36078
36047
|
{
|
|
36079
36048
|
asButton: true,
|
|
36080
|
-
className: cn(
|
|
36081
|
-
"ml-auto rounded-full border-foreground",
|
|
36082
|
-
actionClassName,
|
|
36083
|
-
readMoreClassName
|
|
36084
|
-
),
|
|
36049
|
+
className: cn("ml-auto", actionClassName, readMoreClassName),
|
|
36085
36050
|
...pressableProps,
|
|
36086
36051
|
children: children ?? /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
36087
36052
|
icon,
|
|
@@ -36112,7 +36077,7 @@ function BlogTechInsights({
|
|
|
36112
36077
|
/* @__PURE__ */ jsx(Avatar, { className: "h-8 w-8 rounded-md md:h-12 md:w-12", children: featuredPost.authorAvatar && /* @__PURE__ */ jsx(AvatarImage, { src: featuredPost.authorAvatar }) }),
|
|
36113
36078
|
/* @__PURE__ */ jsxs("span", { className: "text-sm md:text-base", children: [
|
|
36114
36079
|
featuredPost.author && /* @__PURE__ */ jsx("span", { className: "block", children: featuredPost.author }),
|
|
36115
|
-
featuredPost.authorRole && /* @__PURE__ */ jsx("span", { className: "text-xs
|
|
36080
|
+
featuredPost.authorRole && /* @__PURE__ */ jsx("span", { className: "text-xs md:text-sm", children: featuredPost.authorRole })
|
|
36116
36081
|
] })
|
|
36117
36082
|
] })
|
|
36118
36083
|
] });
|
|
@@ -36160,7 +36125,7 @@ function BlogTechInsights({
|
|
|
36160
36125
|
) }),
|
|
36161
36126
|
/* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
|
|
36162
36127
|
post.title && /* @__PURE__ */ jsx("h3", { className: "font-semibold text-md line-clamp-2", children: post.title }),
|
|
36163
|
-
truncatedDescription && /* @__PURE__ */ jsx("p", { className: "mt-1 text-sm leading-snug
|
|
36128
|
+
truncatedDescription && /* @__PURE__ */ jsx("p", { className: "mt-1 text-sm leading-snug md:text-base line-clamp-2", children: truncatedDescription })
|
|
36164
36129
|
] })
|
|
36165
36130
|
]
|
|
36166
36131
|
}
|
|
@@ -36192,64 +36157,53 @@ function BlogTechInsights({
|
|
|
36192
36157
|
className: cn("dark relative", className),
|
|
36193
36158
|
pattern,
|
|
36194
36159
|
patternOpacity,
|
|
36195
|
-
|
|
36196
|
-
|
|
36197
|
-
{
|
|
36198
|
-
|
|
36199
|
-
"
|
|
36200
|
-
|
|
36201
|
-
|
|
36202
|
-
|
|
36203
|
-
|
|
36204
|
-
|
|
36205
|
-
|
|
36206
|
-
|
|
36207
|
-
|
|
36208
|
-
|
|
36209
|
-
|
|
36210
|
-
|
|
36211
|
-
children: heading
|
|
36212
|
-
}
|
|
36213
|
-
) : /* @__PURE__ */ jsx("div", { className: headingClassName, children: heading })),
|
|
36214
|
-
/* @__PURE__ */ jsxs("div", { className: "mt-4 flex justify-start", children: [
|
|
36215
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsx(
|
|
36216
|
-
"span",
|
|
36217
|
-
{
|
|
36218
|
-
className: cn(
|
|
36219
|
-
"mt-2 block text-sm text-muted-foreground md:text-base",
|
|
36220
|
-
descriptionClassName
|
|
36221
|
-
),
|
|
36222
|
-
children: description
|
|
36223
|
-
}
|
|
36224
|
-
) : /* @__PURE__ */ jsx("div", { className: descriptionClassName, children: description })),
|
|
36225
|
-
readMoreActionContent
|
|
36226
|
-
] })
|
|
36227
|
-
] }),
|
|
36228
|
-
/* @__PURE__ */ jsxs(
|
|
36229
|
-
"div",
|
|
36160
|
+
containerClassName,
|
|
36161
|
+
children: /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col items-center gap-8 md:gap-14"), children: [
|
|
36162
|
+
/* @__PURE__ */ jsxs("div", { className: cn("w-full", headerClassName), children: [
|
|
36163
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
36164
|
+
"h1",
|
|
36165
|
+
{
|
|
36166
|
+
className: cn(
|
|
36167
|
+
"text-3xl font-bold md:text-4xl lg:text-5xl",
|
|
36168
|
+
headingClassName
|
|
36169
|
+
),
|
|
36170
|
+
children: heading
|
|
36171
|
+
}
|
|
36172
|
+
) : heading),
|
|
36173
|
+
/* @__PURE__ */ jsxs("div", { className: "mt-4 flex justify-start", children: [
|
|
36174
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx(
|
|
36175
|
+
"span",
|
|
36230
36176
|
{
|
|
36231
36177
|
className: cn(
|
|
36232
|
-
"
|
|
36233
|
-
|
|
36178
|
+
"mt-2 block text-sm md:text-base",
|
|
36179
|
+
descriptionClassName
|
|
36234
36180
|
),
|
|
36235
|
-
children:
|
|
36236
|
-
featuredPostContent,
|
|
36237
|
-
/* @__PURE__ */ jsx(
|
|
36238
|
-
"div",
|
|
36239
|
-
{
|
|
36240
|
-
className: cn(
|
|
36241
|
-
"space-y-6 md:space-y-8",
|
|
36242
|
-
secondaryPostsClassName
|
|
36243
|
-
),
|
|
36244
|
-
children: secondaryPostsContent
|
|
36245
|
-
}
|
|
36246
|
-
)
|
|
36247
|
-
]
|
|
36181
|
+
children: description
|
|
36248
36182
|
}
|
|
36249
|
-
)
|
|
36250
|
-
|
|
36251
|
-
|
|
36252
|
-
|
|
36183
|
+
) : description),
|
|
36184
|
+
readMoreActionContent
|
|
36185
|
+
] })
|
|
36186
|
+
] }),
|
|
36187
|
+
/* @__PURE__ */ jsxs(
|
|
36188
|
+
"div",
|
|
36189
|
+
{
|
|
36190
|
+
className: cn(
|
|
36191
|
+
"grid grid-cols-1 gap-8 md:grid-cols-2 lg:gap-12",
|
|
36192
|
+
contentClassName
|
|
36193
|
+
),
|
|
36194
|
+
children: [
|
|
36195
|
+
featuredPostContent,
|
|
36196
|
+
/* @__PURE__ */ jsx(
|
|
36197
|
+
"div",
|
|
36198
|
+
{
|
|
36199
|
+
className: cn("space-y-6 md:space-y-8", secondaryPostsClassName),
|
|
36200
|
+
children: secondaryPostsContent
|
|
36201
|
+
}
|
|
36202
|
+
)
|
|
36203
|
+
]
|
|
36204
|
+
}
|
|
36205
|
+
)
|
|
36206
|
+
] })
|
|
36253
36207
|
}
|
|
36254
36208
|
);
|
|
36255
36209
|
}
|
|
@@ -36856,7 +36810,7 @@ function BlogMasonryFeaturedComponent({
|
|
|
36856
36810
|
optixFlowConfig,
|
|
36857
36811
|
background,
|
|
36858
36812
|
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
36859
|
-
spacing = "
|
|
36813
|
+
spacing = "hero",
|
|
36860
36814
|
pattern,
|
|
36861
36815
|
patternOpacity
|
|
36862
36816
|
}) {
|
|
@@ -36897,7 +36851,7 @@ function BlogMasonryFeaturedComponent({
|
|
|
36897
36851
|
(featuredPost.date || featuredPost.published) && featuredPost.author && "\xB7",
|
|
36898
36852
|
featuredPost.author && /* @__PURE__ */ jsx("span", { children: featuredPost.author })
|
|
36899
36853
|
] }),
|
|
36900
|
-
featuredPost.title && (typeof featuredPost.title === "string" ? /* @__PURE__ */ jsx("
|
|
36854
|
+
featuredPost.title && (typeof featuredPost.title === "string" ? /* @__PURE__ */ jsx("div", { className: "text-2xl font-semibold", children: featuredPost.title }) : featuredPost.title),
|
|
36901
36855
|
(featuredPost.description || featuredPost.summary) && /* @__PURE__ */ jsx("p", { className: "mt-4 text-sm font-normal", children: featuredPost.description || featuredPost.summary })
|
|
36902
36856
|
] })
|
|
36903
36857
|
]
|
|
@@ -36939,7 +36893,7 @@ function BlogMasonryFeaturedComponent({
|
|
|
36939
36893
|
(post.date || post.published) && post.author && "\xB7",
|
|
36940
36894
|
post.author && /* @__PURE__ */ jsx("span", { children: post.author })
|
|
36941
36895
|
] }),
|
|
36942
|
-
post.title && (typeof post.title === "string" ? /* @__PURE__ */ jsx("
|
|
36896
|
+
post.title && (typeof post.title === "string" ? /* @__PURE__ */ jsx("div", { className: "text-lg font-semibold", children: post.title }) : post.title)
|
|
36943
36897
|
] })
|
|
36944
36898
|
]
|
|
36945
36899
|
},
|
|
@@ -36952,7 +36906,7 @@ function BlogMasonryFeaturedComponent({
|
|
|
36952
36906
|
{
|
|
36953
36907
|
background,
|
|
36954
36908
|
spacing,
|
|
36955
|
-
className
|
|
36909
|
+
className,
|
|
36956
36910
|
pattern,
|
|
36957
36911
|
patternOpacity,
|
|
36958
36912
|
containerClassName,
|
|
@@ -37317,9 +37271,8 @@ var AppleCarousel = ({
|
|
|
37317
37271
|
"div",
|
|
37318
37272
|
{
|
|
37319
37273
|
className: cn(
|
|
37320
|
-
"flex flex-row justify-start
|
|
37321
|
-
"mx-auto
|
|
37322
|
-
// remove max-w-4xl if you want the carousel to span the full width of its container
|
|
37274
|
+
"flex flex-row justify-start",
|
|
37275
|
+
"mx-auto gap-4 pl-4",
|
|
37323
37276
|
containerClassName
|
|
37324
37277
|
),
|
|
37325
37278
|
children: items.map((item, index) => /* @__PURE__ */ jsx(
|
|
@@ -37396,7 +37349,9 @@ var AppleCarouselCard = ({
|
|
|
37396
37349
|
"div",
|
|
37397
37350
|
{
|
|
37398
37351
|
className: cn(
|
|
37399
|
-
"
|
|
37352
|
+
"text-left text-white text-shadow-lg",
|
|
37353
|
+
"relative z-40 p-4 md:p-8",
|
|
37354
|
+
"text-balance",
|
|
37400
37355
|
contentClassName
|
|
37401
37356
|
),
|
|
37402
37357
|
children: [
|
|
@@ -37404,7 +37359,7 @@ var AppleCarouselCard = ({
|
|
|
37404
37359
|
motion$1.p,
|
|
37405
37360
|
{
|
|
37406
37361
|
layoutId: layout ? `category-${card.category}-${index}` : void 0,
|
|
37407
|
-
className: "text-
|
|
37362
|
+
className: "text-sm font-bold md:text-base tracking-tight uppercase",
|
|
37408
37363
|
children: card.category
|
|
37409
37364
|
}
|
|
37410
37365
|
),
|
|
@@ -37412,7 +37367,7 @@ var AppleCarouselCard = ({
|
|
|
37412
37367
|
motion$1.p,
|
|
37413
37368
|
{
|
|
37414
37369
|
layoutId: layout ? `title-${card.title}-${index}` : void 0,
|
|
37415
|
-
className: "mt-2
|
|
37370
|
+
className: "mt-2 text-lg md:text-2xl font-semibold",
|
|
37416
37371
|
children: card.title
|
|
37417
37372
|
}
|
|
37418
37373
|
)
|
|
@@ -37425,7 +37380,9 @@ var AppleCarouselCard = ({
|
|
|
37425
37380
|
src: card.src,
|
|
37426
37381
|
alt: card.title,
|
|
37427
37382
|
className: cn(
|
|
37428
|
-
"absolute inset-0 z-10
|
|
37383
|
+
"absolute inset-0 z-10",
|
|
37384
|
+
"h-full w-full object-cover",
|
|
37385
|
+
action.type !== "none" ? "cursor-pointer transition-all duration-500 brightness-75 hover:brightness-50" : "brightness-75",
|
|
37429
37386
|
imageClassName
|
|
37430
37387
|
),
|
|
37431
37388
|
optixFlowConfig
|
|
@@ -37546,7 +37503,7 @@ function BlogCarouselAppleComponent({
|
|
|
37546
37503
|
spacing,
|
|
37547
37504
|
pattern,
|
|
37548
37505
|
patternOpacity,
|
|
37549
|
-
className
|
|
37506
|
+
className,
|
|
37550
37507
|
children: /* @__PURE__ */ jsx(
|
|
37551
37508
|
AppleCarousel,
|
|
37552
37509
|
{
|
|
@@ -39757,12 +39714,12 @@ function FaqSplitHelp({
|
|
|
39757
39714
|
helpAction,
|
|
39758
39715
|
helpSlot,
|
|
39759
39716
|
background,
|
|
39760
|
-
|
|
39717
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
39718
|
+
spacing = "lg",
|
|
39761
39719
|
pattern,
|
|
39762
39720
|
patternOpacity,
|
|
39763
39721
|
patternClassName,
|
|
39764
39722
|
className,
|
|
39765
|
-
containerClassName,
|
|
39766
39723
|
leftColumnClassName,
|
|
39767
39724
|
headingClassName,
|
|
39768
39725
|
descriptionClassName,
|
|
@@ -39794,14 +39751,14 @@ function FaqSplitHelp({
|
|
|
39794
39751
|
"transition-opacity duration-200 hover:no-underline hover:opacity-60",
|
|
39795
39752
|
accordionTriggerClassName
|
|
39796
39753
|
),
|
|
39797
|
-
children: /* @__PURE__ */ jsx("div", { className: "font-medium
|
|
39754
|
+
children: /* @__PURE__ */ jsx("div", { className: "font-medium py-1 md:py-2 text-lg", children: item.question })
|
|
39798
39755
|
}
|
|
39799
39756
|
),
|
|
39800
39757
|
/* @__PURE__ */ jsx(
|
|
39801
39758
|
AccordionContent,
|
|
39802
39759
|
{
|
|
39803
|
-
className: cn("
|
|
39804
|
-
children: /* @__PURE__ */ jsx("div", { className: "
|
|
39760
|
+
className: cn("mb-1 md:mb-2", accordionContentClassName),
|
|
39761
|
+
children: /* @__PURE__ */ jsx("div", { className: "text-base md:text-lg", children: item.answer })
|
|
39805
39762
|
}
|
|
39806
39763
|
)
|
|
39807
39764
|
]
|
|
@@ -39824,9 +39781,12 @@ function FaqSplitHelp({
|
|
|
39824
39781
|
"div",
|
|
39825
39782
|
{
|
|
39826
39783
|
className: cn(
|
|
39827
|
-
"
|
|
39828
|
-
|
|
39829
|
-
|
|
39784
|
+
"flex flex-col items-center",
|
|
39785
|
+
"md:flex-row md:justify-between",
|
|
39786
|
+
"mt-8 md:mt-16 p-6 lg:p-8",
|
|
39787
|
+
"gap-4 text-center md:text-left",
|
|
39788
|
+
"rounded-lg shadow-lg",
|
|
39789
|
+
"bg-card text-card-foreground",
|
|
39830
39790
|
helpSectionClassName
|
|
39831
39791
|
),
|
|
39832
39792
|
children: [
|
|
@@ -39870,20 +39830,22 @@ function FaqSplitHelp({
|
|
|
39870
39830
|
patternOpacity,
|
|
39871
39831
|
patternClassName,
|
|
39872
39832
|
className,
|
|
39873
|
-
|
|
39833
|
+
containerClassName,
|
|
39834
|
+
children: /* @__PURE__ */ jsxs("div", { className: "relative", children: [
|
|
39874
39835
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-10 lg:flex-row lg:gap-20", children: [
|
|
39875
39836
|
/* @__PURE__ */ jsxs("div", { className: cn("lg:w-1/3", leftColumnClassName), children: [
|
|
39876
39837
|
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
39877
39838
|
"h2",
|
|
39878
39839
|
{
|
|
39879
39840
|
className: cn(
|
|
39880
|
-
"
|
|
39841
|
+
"text-3xl lg:text-4xl font-semibold",
|
|
39842
|
+
"mb-3 md:mb-4 lg:mb-6",
|
|
39881
39843
|
headingClassName
|
|
39882
39844
|
),
|
|
39883
39845
|
children: heading
|
|
39884
39846
|
}
|
|
39885
|
-
) :
|
|
39886
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("
|
|
39847
|
+
) : heading),
|
|
39848
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-base md:text-lg", descriptionClassName), children: description }) : description)
|
|
39887
39849
|
] }),
|
|
39888
39850
|
itemsContent
|
|
39889
39851
|
] }),
|
|
@@ -95032,14 +94994,7 @@ function StatsImpactGrid({
|
|
|
95032
94994
|
const renderStatIcon = useCallback((stat) => {
|
|
95033
94995
|
if (stat.iconSlot) return stat.iconSlot;
|
|
95034
94996
|
if (!stat.icon) return null;
|
|
95035
|
-
return /* @__PURE__ */ jsx("div", { className: "mb-6", children: /* @__PURE__ */ jsx(
|
|
95036
|
-
DynamicIcon,
|
|
95037
|
-
{
|
|
95038
|
-
name: stat.icon,
|
|
95039
|
-
size: 32,
|
|
95040
|
-
className: stat.iconColor || "text-primary"
|
|
95041
|
-
}
|
|
95042
|
-
) });
|
|
94997
|
+
return /* @__PURE__ */ jsx("div", { className: "mb-6", children: /* @__PURE__ */ jsx(DynamicIcon, { name: stat.icon, size: 32, className: stat.iconColor }) });
|
|
95043
94998
|
}, []);
|
|
95044
94999
|
const statsContent = useMemo(() => {
|
|
95045
95000
|
if (statsSlot) return statsSlot;
|
|
@@ -95067,7 +95022,7 @@ function StatsImpactGrid({
|
|
|
95067
95022
|
stat.suffix && /* @__PURE__ */ jsx("span", { className: "mb-1 ml-1 text-2xl font-bold", children: stat.suffix })
|
|
95068
95023
|
] }),
|
|
95069
95024
|
stat.label && /* @__PURE__ */ jsx("div", { className: "mb-4 text-xl font-semibold", children: stat.label }),
|
|
95070
|
-
stat.description && (typeof stat.description === "string" ? /* @__PURE__ */ jsx("p", { className: "
|
|
95025
|
+
stat.description && (typeof stat.description === "string" ? /* @__PURE__ */ jsx("p", { className: "opacity-75", children: stat.description }) : stat.description)
|
|
95071
95026
|
] })
|
|
95072
95027
|
},
|
|
95073
95028
|
stat.id
|
|
@@ -95089,56 +95044,45 @@ function StatsImpactGrid({
|
|
|
95089
95044
|
if (comparisonSlot) return comparisonSlot;
|
|
95090
95045
|
if (!hasComparisonContent) return null;
|
|
95091
95046
|
const hasProgressBars = baselineLabel && targetLabel && baselinePercent !== void 0 && targetPercent !== void 0;
|
|
95092
|
-
return /* @__PURE__ */ jsx(
|
|
95093
|
-
"div",
|
|
95094
|
-
|
|
95095
|
-
className:
|
|
95096
|
-
|
|
95097
|
-
|
|
95098
|
-
|
|
95099
|
-
|
|
95100
|
-
|
|
95101
|
-
|
|
95102
|
-
|
|
95103
|
-
|
|
95104
|
-
|
|
95105
|
-
|
|
95106
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95107
|
-
/* @__PURE__ */ jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-muted-foreground/20", children: /* @__PURE__ */ jsx(
|
|
95108
|
-
"div",
|
|
95109
|
-
{
|
|
95110
|
-
className: "h-full bg-muted-foreground",
|
|
95111
|
-
style: { width: `${baselinePercent}%` }
|
|
95112
|
-
}
|
|
95113
|
-
) }),
|
|
95114
|
-
/* @__PURE__ */ jsx("span", { className: "min-w-[60px] text-sm font-medium", children: baselineLabel })
|
|
95115
|
-
] }),
|
|
95116
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95117
|
-
/* @__PURE__ */ jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ jsx(
|
|
95118
|
-
"div",
|
|
95119
|
-
{
|
|
95120
|
-
className: "h-full bg-primary",
|
|
95121
|
-
style: { width: `${targetPercent}%` }
|
|
95122
|
-
}
|
|
95123
|
-
) }),
|
|
95124
|
-
/* @__PURE__ */ jsx("span", { className: "min-w-[60px] text-sm font-medium", children: targetLabel })
|
|
95125
|
-
] })
|
|
95126
|
-
] })
|
|
95047
|
+
return /* @__PURE__ */ jsx("div", { className: cn("mb-16 rounded-xl p-8", comparisonClassName), children: /* @__PURE__ */ jsxs("div", { className: "grid gap-8 md:grid-cols-[minmax(0,1fr)_minmax(0,240px)] md:items-start md:gap-12", children: [
|
|
95048
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
95049
|
+
comparisonHeading && (typeof comparisonHeading === "string" ? /* @__PURE__ */ jsx("h3", { className: "mb-4 text-2xl font-bold", children: comparisonHeading }) : comparisonHeading),
|
|
95050
|
+
comparisonDescription && (typeof comparisonDescription === "string" ? /* @__PURE__ */ jsx("p", { className: "mb-6 text-muted-foreground", children: comparisonDescription }) : comparisonDescription),
|
|
95051
|
+
hasProgressBars && /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
95052
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95053
|
+
/* @__PURE__ */ jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-muted-foreground/20", children: /* @__PURE__ */ jsx(
|
|
95054
|
+
"div",
|
|
95055
|
+
{
|
|
95056
|
+
className: "h-full bg-muted-foreground",
|
|
95057
|
+
style: { width: `${baselinePercent}%` }
|
|
95058
|
+
}
|
|
95059
|
+
) }),
|
|
95060
|
+
/* @__PURE__ */ jsx("span", { className: "min-w-[60px] text-sm font-medium", children: baselineLabel })
|
|
95127
95061
|
] }),
|
|
95128
|
-
|
|
95129
|
-
|
|
95130
|
-
|
|
95131
|
-
|
|
95132
|
-
|
|
95133
|
-
|
|
95134
|
-
|
|
95135
|
-
|
|
95136
|
-
|
|
95137
|
-
|
|
95138
|
-
] }) })
|
|
95062
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95063
|
+
/* @__PURE__ */ jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ jsx(
|
|
95064
|
+
"div",
|
|
95065
|
+
{
|
|
95066
|
+
className: "h-full bg-primary",
|
|
95067
|
+
style: { width: `${targetPercent}%` }
|
|
95068
|
+
}
|
|
95069
|
+
) }),
|
|
95070
|
+
/* @__PURE__ */ jsx("span", { className: "min-w-[60px] text-sm font-medium", children: targetLabel })
|
|
95071
|
+
] })
|
|
95139
95072
|
] })
|
|
95140
|
-
}
|
|
95141
|
-
|
|
95073
|
+
] }),
|
|
95074
|
+
(baselineValue || targetValue) && /* @__PURE__ */ jsx("div", { className: "rounded-lg border bg-background/70 p-6 text-center shadow-sm md:text-left", children: /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
95075
|
+
baselineValue && /* @__PURE__ */ jsxs("div", { children: [
|
|
95076
|
+
baselineLabel && /* @__PURE__ */ jsx("div", { className: "text-xs font-semibold uppercase tracking-wide text-muted-foreground", children: baselineLabel }),
|
|
95077
|
+
/* @__PURE__ */ jsx("div", { className: "text-3xl font-bold", children: baselineValue })
|
|
95078
|
+
] }),
|
|
95079
|
+
baselineValue && targetValue && /* @__PURE__ */ jsx("div", { className: "h-px bg-border" }),
|
|
95080
|
+
targetValue && /* @__PURE__ */ jsxs("div", { children: [
|
|
95081
|
+
targetLabel && /* @__PURE__ */ jsx("div", { className: "text-xs font-semibold uppercase tracking-wide text-primary", children: targetLabel }),
|
|
95082
|
+
/* @__PURE__ */ jsx("div", { className: "text-4xl font-bold text-primary", children: targetValue })
|
|
95083
|
+
] })
|
|
95084
|
+
] }) })
|
|
95085
|
+
] }) });
|
|
95142
95086
|
}, [
|
|
95143
95087
|
comparisonSlot,
|
|
95144
95088
|
hasComparisonContent,
|
|
@@ -95188,7 +95132,7 @@ function StatsImpactGrid({
|
|
|
95188
95132
|
if (ctaSlot) return ctaSlot;
|
|
95189
95133
|
if (!ctaHeading && (!actions || actions.length === 0)) return null;
|
|
95190
95134
|
return /* @__PURE__ */ jsxs("div", { className: cn("text-center", ctaClassName), children: [
|
|
95191
|
-
ctaHeading && (typeof ctaHeading === "string" ? /* @__PURE__ */ jsx("h3", { className: "mb-6 text-2xl font-bold", children: ctaHeading }) :
|
|
95135
|
+
ctaHeading && (typeof ctaHeading === "string" ? /* @__PURE__ */ jsx("h3", { className: "mb-6 text-2xl font-bold", children: ctaHeading }) : ctaHeading),
|
|
95192
95136
|
actionsContent
|
|
95193
95137
|
] });
|
|
95194
95138
|
}, [ctaSlot, ctaHeading, actions, ctaClassName, actionsContent]);
|
|
@@ -95210,22 +95154,22 @@ function StatsImpactGrid({
|
|
|
95210
95154
|
"h2",
|
|
95211
95155
|
{
|
|
95212
95156
|
className: cn(
|
|
95213
|
-
"mb-4 text-3xl font-bold md:text-5xl",
|
|
95157
|
+
"mb-4 text-3xl font-bold md:text-5xl text-balance",
|
|
95214
95158
|
headingClassName
|
|
95215
95159
|
),
|
|
95216
95160
|
children: heading
|
|
95217
95161
|
}
|
|
95218
|
-
) :
|
|
95162
|
+
) : heading),
|
|
95219
95163
|
description && (typeof description === "string" ? /* @__PURE__ */ jsx(
|
|
95220
95164
|
"p",
|
|
95221
95165
|
{
|
|
95222
95166
|
className: cn(
|
|
95223
|
-
"mx-auto max-w-3xl text-lg text-
|
|
95167
|
+
"mx-auto max-w-3xl text-lg text-balance",
|
|
95224
95168
|
descriptionClassName
|
|
95225
95169
|
),
|
|
95226
95170
|
children: description
|
|
95227
95171
|
}
|
|
95228
|
-
) :
|
|
95172
|
+
) : description)
|
|
95229
95173
|
] }),
|
|
95230
95174
|
statsContent,
|
|
95231
95175
|
comparisonContent,
|