@opensite/ui 2.7.4 → 2.7.6
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-network-spotlight.cjs +1 -2
- package/dist/about-network-spotlight.js +1 -2
- package/dist/about-story-expertise.cjs +33 -43
- package/dist/about-story-expertise.js +33 -43
- package/dist/blog-tech-insights.cjs +2 -2
- package/dist/blog-tech-insights.js +2 -2
- package/dist/cta-case-study-testimonial.cjs +6 -41
- package/dist/cta-case-study-testimonial.d.cts +3 -10
- package/dist/cta-case-study-testimonial.d.ts +3 -10
- package/dist/cta-case-study-testimonial.js +6 -41
- package/dist/cta-documentation-links.cjs +6 -31
- package/dist/cta-documentation-links.d.cts +1 -1
- package/dist/cta-documentation-links.d.ts +1 -1
- package/dist/cta-documentation-links.js +6 -31
- package/dist/cta-enterprise-split.cjs +4 -3
- package/dist/cta-enterprise-split.d.cts +1 -1
- package/dist/cta-enterprise-split.d.ts +1 -1
- package/dist/cta-enterprise-split.js +4 -3
- package/dist/cta-feature-cards-grid.cjs +9 -46
- package/dist/cta-feature-cards-grid.d.cts +1 -1
- package/dist/cta-feature-cards-grid.d.ts +1 -1
- package/dist/cta-feature-cards-grid.js +9 -46
- package/dist/cta-feature-checklist.cjs +666 -687
- package/dist/cta-feature-checklist.d.cts +1 -1
- package/dist/cta-feature-checklist.d.ts +1 -1
- package/dist/cta-feature-checklist.js +665 -686
- package/dist/feature-animated-carousel.cjs +1 -1
- package/dist/feature-animated-carousel.js +1 -1
- package/dist/hero-ad-campaign-expert.cjs +54 -36
- package/dist/hero-ad-campaign-expert.js +54 -36
- package/dist/registry.cjs +176 -199
- package/dist/registry.js +176 -199
- package/dist/stats-impact-grid.cjs +48 -39
- package/dist/stats-impact-grid.js +48 -39
- package/package.json +1 -1
package/dist/registry.cjs
CHANGED
|
@@ -9037,12 +9037,12 @@ function AboutStoryExpertise({
|
|
|
9037
9037
|
{
|
|
9038
9038
|
className: cn(
|
|
9039
9039
|
"bg-card text-card-foreground",
|
|
9040
|
-
"rounded-2xl border
|
|
9040
|
+
"rounded-2xl border p-5 shadow-xl",
|
|
9041
9041
|
highlightClassName
|
|
9042
9042
|
),
|
|
9043
9043
|
children: [
|
|
9044
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center gap-4", children: [
|
|
9045
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex
|
|
9044
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center gap-3 md:gap-4", children: [
|
|
9045
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-12 items-center justify-center rounded-full bg-primary text-primary-foreground shrink-0", children: highlight.icon }),
|
|
9046
9046
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
9047
9047
|
highlight.label && (typeof highlight.label === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9048
9048
|
"p",
|
|
@@ -9053,7 +9053,7 @@ function AboutStoryExpertise({
|
|
|
9053
9053
|
children: highlight.label
|
|
9054
9054
|
}
|
|
9055
9055
|
) : highlight.label),
|
|
9056
|
-
highlight.title && (typeof highlight.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-lg font-bold", children: highlight.title }) : highlight.title)
|
|
9056
|
+
highlight.title && (typeof highlight.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-lg font-bold leading-tight", children: highlight.title }) : highlight.title)
|
|
9057
9057
|
] })
|
|
9058
9058
|
] }),
|
|
9059
9059
|
highlight.description && (typeof highlight.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm"), children: highlight.description }) : highlight.description)
|
|
@@ -9118,9 +9118,9 @@ function AboutStoryExpertise({
|
|
|
9118
9118
|
whileInView: { opacity: 1, x: 0 },
|
|
9119
9119
|
viewport: { once: true, margin: "-50px" },
|
|
9120
9120
|
transition: { duration: 0.5 },
|
|
9121
|
-
className: "order-2 space-y-
|
|
9121
|
+
className: "order-2 space-y-8 lg:order-1",
|
|
9122
9122
|
children: [
|
|
9123
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
9123
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-6", children: [
|
|
9124
9124
|
eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9125
9125
|
"p",
|
|
9126
9126
|
{
|
|
@@ -9167,7 +9167,7 @@ function AboutStoryExpertise({
|
|
|
9167
9167
|
{
|
|
9168
9168
|
className: cn(
|
|
9169
9169
|
"relative overflow-hidden rounded-3xl",
|
|
9170
|
-
"
|
|
9170
|
+
"shadow-2xl aspect-square",
|
|
9171
9171
|
imageClassName
|
|
9172
9172
|
),
|
|
9173
9173
|
children: [
|
|
@@ -9180,48 +9180,38 @@ function AboutStoryExpertise({
|
|
|
9180
9180
|
optixFlowConfig
|
|
9181
9181
|
}
|
|
9182
9182
|
),
|
|
9183
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute
|
|
9184
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-6 left-6 right-6", children: highlightContent })
|
|
9183
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-4 md:bottom-6 left-4 md:left-6 right-4 md:right-6", children: highlightContent })
|
|
9185
9184
|
]
|
|
9186
9185
|
}
|
|
9187
9186
|
)
|
|
9188
9187
|
}
|
|
9189
9188
|
)
|
|
9190
9189
|
] }),
|
|
9191
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
9192
|
-
"div",
|
|
9193
|
-
|
|
9194
|
-
|
|
9195
|
-
|
|
9196
|
-
|
|
9197
|
-
|
|
9198
|
-
|
|
9199
|
-
|
|
9200
|
-
|
|
9201
|
-
|
|
9202
|
-
|
|
9203
|
-
|
|
9204
|
-
|
|
9205
|
-
|
|
9206
|
-
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
)
|
|
9210
|
-
|
|
9211
|
-
|
|
9212
|
-
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
),
|
|
9217
|
-
children: expertiseDescription
|
|
9218
|
-
}
|
|
9219
|
-
) : expertiseDescription)
|
|
9220
|
-
] }),
|
|
9221
|
-
expertiseAreasContent
|
|
9222
|
-
]
|
|
9223
|
-
}
|
|
9224
|
-
)
|
|
9190
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-20 rounded-3xl", expertiseSectionClassName), children: [
|
|
9191
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center", children: [
|
|
9192
|
+
expertiseHeading && (typeof expertiseHeading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9193
|
+
"h3",
|
|
9194
|
+
{
|
|
9195
|
+
className: cn(
|
|
9196
|
+
"mt-2 text-2xl font-bold md:text-3xl",
|
|
9197
|
+
expertiseHeadingClassName
|
|
9198
|
+
),
|
|
9199
|
+
children: expertiseHeading
|
|
9200
|
+
}
|
|
9201
|
+
) : expertiseHeading),
|
|
9202
|
+
expertiseDescription && (typeof expertiseDescription === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9203
|
+
"p",
|
|
9204
|
+
{
|
|
9205
|
+
className: cn(
|
|
9206
|
+
"mx-auto mt-3 max-w-2xl",
|
|
9207
|
+
expertiseDescriptionClassName
|
|
9208
|
+
),
|
|
9209
|
+
children: expertiseDescription
|
|
9210
|
+
}
|
|
9211
|
+
) : expertiseDescription)
|
|
9212
|
+
] }),
|
|
9213
|
+
expertiseAreasContent
|
|
9214
|
+
] })
|
|
9225
9215
|
]
|
|
9226
9216
|
}
|
|
9227
9217
|
);
|
|
@@ -9339,8 +9329,7 @@ function AboutNetworkSpotlight({
|
|
|
9339
9329
|
optixFlowConfig
|
|
9340
9330
|
}
|
|
9341
9331
|
),
|
|
9342
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute
|
|
9343
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-2 md:bottom-6 left-2 md:left-6 right-2 md:right-6", children: spotlightCardContent })
|
|
9332
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-4 md:bottom-6 left-4 md:left-6 right-4 md:right-6", children: spotlightCardContent })
|
|
9344
9333
|
] })
|
|
9345
9334
|
}
|
|
9346
9335
|
),
|
|
@@ -9733,7 +9722,6 @@ function CtaDocumentationLinks({
|
|
|
9733
9722
|
links,
|
|
9734
9723
|
linksSlot,
|
|
9735
9724
|
className,
|
|
9736
|
-
containerClassName,
|
|
9737
9725
|
cardClassName,
|
|
9738
9726
|
contentClassName,
|
|
9739
9727
|
headingClassName,
|
|
@@ -9742,7 +9730,8 @@ function CtaDocumentationLinks({
|
|
|
9742
9730
|
linksClassName,
|
|
9743
9731
|
linkCardClassName,
|
|
9744
9732
|
background,
|
|
9745
|
-
|
|
9733
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
9734
|
+
spacing = "py-32 md:py-32",
|
|
9746
9735
|
pattern,
|
|
9747
9736
|
patternOpacity
|
|
9748
9737
|
}) {
|
|
@@ -9810,7 +9799,7 @@ function CtaDocumentationLinks({
|
|
|
9810
9799
|
)),
|
|
9811
9800
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
9812
9801
|
link.title && /* @__PURE__ */ jsxRuntime.jsx("h5", { className: "mb-2 leading-4 font-medium", children: link.title }),
|
|
9813
|
-
link.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm"
|
|
9802
|
+
link.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm"), children: link.description })
|
|
9814
9803
|
] })
|
|
9815
9804
|
] }),
|
|
9816
9805
|
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/chevron-right", size: 24 })
|
|
@@ -9826,7 +9815,8 @@ function CtaDocumentationLinks({
|
|
|
9826
9815
|
className: cn(className),
|
|
9827
9816
|
pattern,
|
|
9828
9817
|
patternOpacity,
|
|
9829
|
-
|
|
9818
|
+
containerClassName,
|
|
9819
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9830
9820
|
"div",
|
|
9831
9821
|
{
|
|
9832
9822
|
className: cn(
|
|
@@ -9845,7 +9835,7 @@ function CtaDocumentationLinks({
|
|
|
9845
9835
|
children: heading
|
|
9846
9836
|
}
|
|
9847
9837
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mb-2", headingClassName), children: heading })),
|
|
9848
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn(
|
|
9838
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn(descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description })),
|
|
9849
9839
|
actionsContent
|
|
9850
9840
|
] }),
|
|
9851
9841
|
linksContent
|
|
@@ -9863,7 +9853,6 @@ function CtaFeatureChecklist({
|
|
|
9863
9853
|
items,
|
|
9864
9854
|
itemsSlot,
|
|
9865
9855
|
className,
|
|
9866
|
-
containerClassName,
|
|
9867
9856
|
cardClassName,
|
|
9868
9857
|
contentClassName,
|
|
9869
9858
|
headingClassName,
|
|
@@ -9872,39 +9861,11 @@ function CtaFeatureChecklist({
|
|
|
9872
9861
|
checklistClassName,
|
|
9873
9862
|
checklistItemClassName,
|
|
9874
9863
|
background,
|
|
9875
|
-
|
|
9864
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
9865
|
+
spacing = "py-32 md:py-32",
|
|
9876
9866
|
pattern,
|
|
9877
9867
|
patternOpacity
|
|
9878
9868
|
}) {
|
|
9879
|
-
const actionsContent = React30.useMemo(() => {
|
|
9880
|
-
if (actionsSlot) return actionsSlot;
|
|
9881
|
-
if (!actions || actions.length === 0) return null;
|
|
9882
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-6", actionsClassName), children: actions.map((action, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9883
|
-
Pressable,
|
|
9884
|
-
{
|
|
9885
|
-
href: action.href,
|
|
9886
|
-
onClick: action.onClick,
|
|
9887
|
-
variant: action.variant,
|
|
9888
|
-
size: action.size,
|
|
9889
|
-
className: action.className,
|
|
9890
|
-
"aria-label": action["aria-label"],
|
|
9891
|
-
asButton: true,
|
|
9892
|
-
children: [
|
|
9893
|
-
action.icon,
|
|
9894
|
-
action.children ?? action.label,
|
|
9895
|
-
action.iconAfter ?? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9896
|
-
DynamicIcon,
|
|
9897
|
-
{
|
|
9898
|
-
name: "lucide/arrow-right",
|
|
9899
|
-
size: 16,
|
|
9900
|
-
className: "ml-2"
|
|
9901
|
-
}
|
|
9902
|
-
)
|
|
9903
|
-
]
|
|
9904
|
-
},
|
|
9905
|
-
index
|
|
9906
|
-
)) });
|
|
9907
|
-
}, [actionsSlot, actions, actionsClassName]);
|
|
9908
9869
|
const checklistContent = React30.useMemo(() => {
|
|
9909
9870
|
if (itemsSlot) return itemsSlot;
|
|
9910
9871
|
if (!items || items.length === 0) return null;
|
|
@@ -9950,13 +9911,12 @@ function CtaFeatureChecklist({
|
|
|
9950
9911
|
className: cn(className),
|
|
9951
9912
|
pattern,
|
|
9952
9913
|
patternOpacity,
|
|
9953
|
-
|
|
9914
|
+
containerClassName,
|
|
9915
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex justify-center", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "max-w-5xl", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9954
9916
|
"div",
|
|
9955
9917
|
{
|
|
9956
9918
|
className: cn(
|
|
9957
9919
|
"flex flex-col items-start justify-between gap-8 rounded-lg px-6 py-10 md:flex-row lg:px-20 lg:py-16",
|
|
9958
|
-
getNestedCardBg(background),
|
|
9959
|
-
getNestedCardTextColor(background),
|
|
9960
9920
|
cardClassName
|
|
9961
9921
|
),
|
|
9962
9922
|
children: [
|
|
@@ -9970,15 +9930,16 @@ function CtaFeatureChecklist({
|
|
|
9970
9930
|
),
|
|
9971
9931
|
children: heading
|
|
9972
9932
|
}
|
|
9973
|
-
) :
|
|
9974
|
-
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
9975
|
-
|
|
9933
|
+
) : heading),
|
|
9934
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn(descriptionClassName), children: description }) : description),
|
|
9935
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9936
|
+
BlockActions,
|
|
9976
9937
|
{
|
|
9977
|
-
|
|
9978
|
-
|
|
9938
|
+
actions,
|
|
9939
|
+
actionsClassName,
|
|
9940
|
+
actionsSlot
|
|
9979
9941
|
}
|
|
9980
|
-
)
|
|
9981
|
-
actionsContent
|
|
9942
|
+
)
|
|
9982
9943
|
] }),
|
|
9983
9944
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "md:w-1/3", children: checklistContent })
|
|
9984
9945
|
]
|
|
@@ -10627,7 +10588,6 @@ function CtaFeatureCardsGrid({
|
|
|
10627
10588
|
features,
|
|
10628
10589
|
featuresSlot,
|
|
10629
10590
|
className,
|
|
10630
|
-
containerClassName,
|
|
10631
10591
|
contentClassName,
|
|
10632
10592
|
headingClassName,
|
|
10633
10593
|
descriptionClassName,
|
|
@@ -10635,7 +10595,8 @@ function CtaFeatureCardsGrid({
|
|
|
10635
10595
|
featuresClassName,
|
|
10636
10596
|
featureCardClassName,
|
|
10637
10597
|
background,
|
|
10638
|
-
|
|
10598
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
10599
|
+
spacing = "py-32 md:py-32",
|
|
10639
10600
|
pattern,
|
|
10640
10601
|
patternOpacity
|
|
10641
10602
|
}) {
|
|
@@ -10685,16 +10646,9 @@ function CtaFeatureCardsGrid({
|
|
|
10685
10646
|
{
|
|
10686
10647
|
className: cn("p-6 text-center", featureCardClassName),
|
|
10687
10648
|
children: [
|
|
10688
|
-
(feature.icon || feature.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mx-auto mb-4 flex h-12 w-12 items-center justify-center rounded-lg bg-primary/10", children: feature.icon ?? /* @__PURE__ */ jsxRuntime.jsx(
|
|
10689
|
-
DynamicIcon,
|
|
10690
|
-
{
|
|
10691
|
-
name: feature.iconName || "",
|
|
10692
|
-
size: 24,
|
|
10693
|
-
className: getAccentColor(background)
|
|
10694
|
-
}
|
|
10695
|
-
) }),
|
|
10649
|
+
(feature.icon || feature.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mx-auto mb-4 flex h-12 w-12 items-center justify-center rounded-lg bg-primary/10", children: feature.icon ?? /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: feature.iconName || "", size: 24 }) }),
|
|
10696
10650
|
feature.title && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-2 font-semibold", children: feature.title }),
|
|
10697
|
-
feature.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className:
|
|
10651
|
+
feature.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm", children: feature.description })
|
|
10698
10652
|
]
|
|
10699
10653
|
},
|
|
10700
10654
|
index
|
|
@@ -10707,10 +10661,11 @@ function CtaFeatureCardsGrid({
|
|
|
10707
10661
|
{
|
|
10708
10662
|
background,
|
|
10709
10663
|
spacing,
|
|
10710
|
-
className
|
|
10664
|
+
className,
|
|
10711
10665
|
pattern,
|
|
10712
10666
|
patternOpacity,
|
|
10713
|
-
|
|
10667
|
+
containerClassName,
|
|
10668
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
|
|
10714
10669
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("text-center", contentClassName), children: [
|
|
10715
10670
|
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
10716
10671
|
"h2",
|
|
@@ -10721,18 +10676,17 @@ function CtaFeatureCardsGrid({
|
|
|
10721
10676
|
),
|
|
10722
10677
|
children: heading
|
|
10723
10678
|
}
|
|
10724
|
-
) :
|
|
10679
|
+
) : heading),
|
|
10725
10680
|
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
10726
10681
|
"p",
|
|
10727
10682
|
{
|
|
10728
10683
|
className: cn(
|
|
10729
10684
|
"mx-auto mb-8 max-w-2xl text-lg",
|
|
10730
|
-
getTextColor(background, "muted"),
|
|
10731
10685
|
descriptionClassName
|
|
10732
10686
|
),
|
|
10733
10687
|
children: description
|
|
10734
10688
|
}
|
|
10735
|
-
) :
|
|
10689
|
+
) : description),
|
|
10736
10690
|
actionsContent
|
|
10737
10691
|
] }),
|
|
10738
10692
|
featuresContent
|
|
@@ -11290,7 +11244,6 @@ function CtaEnterpriseSplit({
|
|
|
11290
11244
|
links,
|
|
11291
11245
|
linksSlot,
|
|
11292
11246
|
className,
|
|
11293
|
-
containerClassName,
|
|
11294
11247
|
gridClassName,
|
|
11295
11248
|
contentClassName,
|
|
11296
11249
|
headingClassName,
|
|
@@ -11299,7 +11252,8 @@ function CtaEnterpriseSplit({
|
|
|
11299
11252
|
linksClassName,
|
|
11300
11253
|
linkCardClassName,
|
|
11301
11254
|
background,
|
|
11302
|
-
|
|
11255
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
11256
|
+
spacing = "py-32 md:py-32",
|
|
11303
11257
|
pattern,
|
|
11304
11258
|
patternOpacity
|
|
11305
11259
|
}) {
|
|
@@ -11379,7 +11333,8 @@ function CtaEnterpriseSplit({
|
|
|
11379
11333
|
className: cn(className),
|
|
11380
11334
|
pattern,
|
|
11381
11335
|
patternOpacity,
|
|
11382
|
-
|
|
11336
|
+
containerClassName,
|
|
11337
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11383
11338
|
"div",
|
|
11384
11339
|
{
|
|
11385
11340
|
className: cn("grid gap-8 lg:grid-cols-2 lg:gap-16", gridClassName),
|
|
@@ -12954,7 +12909,6 @@ function CtaWorkflowTabs({
|
|
|
12954
12909
|
}
|
|
12955
12910
|
function CtaCaseStudyTestimonial({
|
|
12956
12911
|
badge,
|
|
12957
|
-
badgeText,
|
|
12958
12912
|
heading,
|
|
12959
12913
|
description,
|
|
12960
12914
|
sections,
|
|
@@ -12971,7 +12925,6 @@ function CtaCaseStudyTestimonial({
|
|
|
12971
12925
|
industryBadge,
|
|
12972
12926
|
companyDetails,
|
|
12973
12927
|
className,
|
|
12974
|
-
containerClassName,
|
|
12975
12928
|
gridClassName,
|
|
12976
12929
|
contentClassName,
|
|
12977
12930
|
badgeClassName,
|
|
@@ -12982,7 +12935,8 @@ function CtaCaseStudyTestimonial({
|
|
|
12982
12935
|
actionsClassName,
|
|
12983
12936
|
sidebarClassName,
|
|
12984
12937
|
background,
|
|
12985
|
-
|
|
12938
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
12939
|
+
spacing = "py-32 md:py-32",
|
|
12986
12940
|
pattern,
|
|
12987
12941
|
patternOpacity,
|
|
12988
12942
|
optixFlowConfig
|
|
@@ -13072,7 +13026,7 @@ function CtaCaseStudyTestimonial({
|
|
|
13072
13026
|
index
|
|
13073
13027
|
)) });
|
|
13074
13028
|
}, [statsSlot, stats]);
|
|
13075
|
-
const badgeContent = badge
|
|
13029
|
+
const badgeContent = badge;
|
|
13076
13030
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
13077
13031
|
Section,
|
|
13078
13032
|
{
|
|
@@ -13109,7 +13063,7 @@ function CtaCaseStudyTestimonial({
|
|
|
13109
13063
|
"div",
|
|
13110
13064
|
{
|
|
13111
13065
|
className: cn(
|
|
13112
|
-
"relative mt-8 border-l-4 border-primary/20 pl-6 italic
|
|
13066
|
+
"relative mt-8 border-l-4 border-primary/20 pl-6 italic",
|
|
13113
13067
|
testimonialClassName
|
|
13114
13068
|
),
|
|
13115
13069
|
children: [
|
|
@@ -13118,7 +13072,7 @@ function CtaCaseStudyTestimonial({
|
|
|
13118
13072
|
{
|
|
13119
13073
|
name: "lucide/quote",
|
|
13120
13074
|
size: 24,
|
|
13121
|
-
className: "absolute -left-3 -top-2 rounded-full
|
|
13075
|
+
className: "absolute -left-3 -top-2 rounded-full"
|
|
13122
13076
|
}
|
|
13123
13077
|
),
|
|
13124
13078
|
/* @__PURE__ */ jsxRuntime.jsxs("p", { className: "md:text-lg", children: [
|
|
@@ -13152,11 +13106,7 @@ function CtaCaseStudyTestimonial({
|
|
|
13152
13106
|
) }) })
|
|
13153
13107
|
] }),
|
|
13154
13108
|
statsContent,
|
|
13155
|
-
(companyLogo || companyName || industryBadge || companyDetails) && /* @__PURE__ */ jsxRuntime.jsxs(Card, { className: cn(
|
|
13156
|
-
"mt-6 rounded-lg border p-4",
|
|
13157
|
-
getNestedCardBg(background),
|
|
13158
|
-
getNestedCardTextColor(background)
|
|
13159
|
-
), children: [
|
|
13109
|
+
(companyLogo || companyName || industryBadge || companyDetails) && /* @__PURE__ */ jsxRuntime.jsxs(Card, { className: cn("mt-6 rounded-lg border p-4"), children: [
|
|
13160
13110
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between", children: [
|
|
13161
13111
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
13162
13112
|
companyLogo && /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -36194,7 +36144,7 @@ function BlogTechInsights({
|
|
|
36194
36144
|
{
|
|
36195
36145
|
background,
|
|
36196
36146
|
spacing,
|
|
36197
|
-
className
|
|
36147
|
+
className,
|
|
36198
36148
|
pattern,
|
|
36199
36149
|
patternOpacity,
|
|
36200
36150
|
containerClassName,
|
|
@@ -36204,7 +36154,7 @@ function BlogTechInsights({
|
|
|
36204
36154
|
"h1",
|
|
36205
36155
|
{
|
|
36206
36156
|
className: cn(
|
|
36207
|
-
"text-
|
|
36157
|
+
"text-2xl font-bold lg:text-3xl",
|
|
36208
36158
|
headingClassName
|
|
36209
36159
|
),
|
|
36210
36160
|
children: heading
|
|
@@ -41429,7 +41379,7 @@ var FeatureCard = React30__namespace.memo(
|
|
|
41429
41379
|
delay: 0.3,
|
|
41430
41380
|
ease: "easeOut"
|
|
41431
41381
|
},
|
|
41432
|
-
className: "p-6 text-sm md:p-8 md:text-base text-
|
|
41382
|
+
className: "p-6 text-sm md:p-8 md:text-base text-pretty",
|
|
41433
41383
|
children: (feature.title || feature.description) && /* @__PURE__ */ jsxRuntime.jsxs("p", { children: [
|
|
41434
41384
|
feature.title && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "font-semibold", children: [
|
|
41435
41385
|
feature.title,
|
|
@@ -52226,42 +52176,60 @@ function HeroAdCampaignExpert({
|
|
|
52226
52176
|
patternOpacity,
|
|
52227
52177
|
className,
|
|
52228
52178
|
containerClassName,
|
|
52229
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
52230
|
-
|
|
52231
|
-
|
|
52232
|
-
|
|
52233
|
-
items:
|
|
52234
|
-
|
|
52235
|
-
|
|
52236
|
-
|
|
52237
|
-
|
|
52238
|
-
|
|
52239
|
-
|
|
52240
|
-
|
|
52241
|
-
|
|
52242
|
-
|
|
52243
|
-
|
|
52244
|
-
|
|
52245
|
-
|
|
52246
|
-
|
|
52247
|
-
|
|
52248
|
-
|
|
52249
|
-
children:
|
|
52250
|
-
|
|
52251
|
-
|
|
52252
|
-
|
|
52253
|
-
|
|
52254
|
-
|
|
52255
|
-
|
|
52256
|
-
|
|
52257
|
-
|
|
52258
|
-
|
|
52259
|
-
),
|
|
52260
|
-
|
|
52261
|
-
|
|
52262
|
-
|
|
52263
|
-
|
|
52264
|
-
|
|
52179
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
52180
|
+
"div",
|
|
52181
|
+
{
|
|
52182
|
+
className: cn(
|
|
52183
|
+
"flex items-center gap-12 md:gap-16 lg:gap-24",
|
|
52184
|
+
mobileOrder,
|
|
52185
|
+
desktopOrder
|
|
52186
|
+
),
|
|
52187
|
+
children: [
|
|
52188
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
52189
|
+
ContentGroup,
|
|
52190
|
+
{
|
|
52191
|
+
items: headerItems,
|
|
52192
|
+
className: cn(
|
|
52193
|
+
"relative flex flex-col items-start gap-8 lg:w-1/2",
|
|
52194
|
+
contentClassName
|
|
52195
|
+
)
|
|
52196
|
+
}
|
|
52197
|
+
),
|
|
52198
|
+
hasMedia && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("relative flex w-full justify-center lg:w-1/2"), children: [
|
|
52199
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative h-auto w-[80%] max-w-[355px] lg:hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
52200
|
+
AspectRatio,
|
|
52201
|
+
{
|
|
52202
|
+
ratio: ASPECT_RATIOS[mediaAspectRatios.mobile],
|
|
52203
|
+
className: cn(
|
|
52204
|
+
"rounded-xl shadow-2xl overflow-hidden",
|
|
52205
|
+
mediaItem?.containerClassName
|
|
52206
|
+
),
|
|
52207
|
+
children: renderMedia
|
|
52208
|
+
}
|
|
52209
|
+
) }),
|
|
52210
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
52211
|
+
"div",
|
|
52212
|
+
{
|
|
52213
|
+
className: "hidden lg:block max-h-[70dvh] w-auto",
|
|
52214
|
+
style: {
|
|
52215
|
+
aspectRatio: ASPECT_RATIOS[mediaAspectRatios.desktop]
|
|
52216
|
+
},
|
|
52217
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
52218
|
+
"div",
|
|
52219
|
+
{
|
|
52220
|
+
className: cn(
|
|
52221
|
+
"size-full rounded-xl shadow-2xl overflow-hidden",
|
|
52222
|
+
mediaItem?.containerClassName
|
|
52223
|
+
),
|
|
52224
|
+
children: renderMedia
|
|
52225
|
+
}
|
|
52226
|
+
)
|
|
52227
|
+
}
|
|
52228
|
+
)
|
|
52229
|
+
] })
|
|
52230
|
+
]
|
|
52231
|
+
}
|
|
52232
|
+
) })
|
|
52265
52233
|
}
|
|
52266
52234
|
);
|
|
52267
52235
|
}
|
|
@@ -95137,45 +95105,54 @@ function StatsImpactGrid({
|
|
|
95137
95105
|
if (comparisonSlot) return comparisonSlot;
|
|
95138
95106
|
if (!hasComparisonContent) return null;
|
|
95139
95107
|
const hasProgressBars = baselineLabel && targetLabel && baselinePercent !== void 0 && targetPercent !== void 0;
|
|
95140
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
95141
|
-
|
|
95142
|
-
|
|
95143
|
-
|
|
95144
|
-
|
|
95145
|
-
|
|
95146
|
-
|
|
95147
|
-
|
|
95148
|
-
|
|
95149
|
-
|
|
95150
|
-
|
|
95151
|
-
|
|
95152
|
-
|
|
95153
|
-
|
|
95108
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
95109
|
+
"div",
|
|
95110
|
+
{
|
|
95111
|
+
className: cn(
|
|
95112
|
+
"mb-16 rounded-xl p-8 bg-card text-card-foreground",
|
|
95113
|
+
comparisonClassName
|
|
95114
|
+
),
|
|
95115
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-8 md:grid-cols-[minmax(0,1fr)_minmax(0,240px)] md:items-start md:gap-12", children: [
|
|
95116
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
95117
|
+
comparisonHeading && (typeof comparisonHeading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-4 text-2xl font-bold", children: comparisonHeading }) : comparisonHeading),
|
|
95118
|
+
comparisonDescription && (typeof comparisonDescription === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "mb-6", children: comparisonDescription }) : comparisonDescription),
|
|
95119
|
+
hasProgressBars && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
95120
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95121
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-card/20 invert", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
95122
|
+
"div",
|
|
95123
|
+
{
|
|
95124
|
+
className: "h-full bg-card",
|
|
95125
|
+
style: { width: `${baselinePercent}%` }
|
|
95126
|
+
}
|
|
95127
|
+
) }),
|
|
95128
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "min-w-[60px] text-sm font-medium", children: baselineLabel })
|
|
95129
|
+
] }),
|
|
95130
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-4", children: [
|
|
95131
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-2 w-full overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
95132
|
+
"div",
|
|
95133
|
+
{
|
|
95134
|
+
className: "h-full bg-primary",
|
|
95135
|
+
style: { width: `${targetPercent}%` }
|
|
95136
|
+
}
|
|
95137
|
+
) }),
|
|
95138
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "min-w-[60px] text-sm font-medium", children: targetLabel })
|
|
95139
|
+
] })
|
|
95140
|
+
] })
|
|
95154
95141
|
] }),
|
|
95155
|
-
/* @__PURE__ */ jsxRuntime.
|
|
95156
|
-
/* @__PURE__ */ jsxRuntime.
|
|
95157
|
-
"div",
|
|
95158
|
-
{
|
|
95159
|
-
|
|
95160
|
-
|
|
95161
|
-
|
|
95162
|
-
|
|
95163
|
-
|
|
95164
|
-
|
|
95165
|
-
|
|
95166
|
-
] }),
|
|
95167
|
-
(baselineValue || targetValue) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rounded-lg border bg-background/70 p-6 text-center shadow-sm md:text-left", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
95168
|
-
baselineValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
95169
|
-
baselineLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs font-semibold uppercase tracking-wide text-muted-foreground", children: baselineLabel }),
|
|
95170
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-3xl font-bold", children: baselineValue })
|
|
95171
|
-
] }),
|
|
95172
|
-
baselineValue && targetValue && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-px bg-border" }),
|
|
95173
|
-
targetValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
95174
|
-
targetLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs font-semibold uppercase tracking-wide text-primary", children: targetLabel }),
|
|
95175
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-4xl font-bold text-primary", children: targetValue })
|
|
95142
|
+
(baselineValue || targetValue) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rounded-lg border p-6 text-center shadow-sm md:text-left", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
95143
|
+
baselineValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
95144
|
+
baselineLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs font-semibold uppercase tracking-wide", children: baselineLabel }),
|
|
95145
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-3xl font-bold", children: baselineValue })
|
|
95146
|
+
] }),
|
|
95147
|
+
baselineValue && targetValue && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-px bg-border" }),
|
|
95148
|
+
targetValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
95149
|
+
targetLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs font-semibold uppercase tracking-wide text-primary", children: targetLabel }),
|
|
95150
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-4xl font-bold text-primary", children: targetValue })
|
|
95151
|
+
] })
|
|
95152
|
+
] }) })
|
|
95176
95153
|
] })
|
|
95177
|
-
|
|
95178
|
-
|
|
95154
|
+
}
|
|
95155
|
+
);
|
|
95179
95156
|
}, [
|
|
95180
95157
|
comparisonSlot,
|
|
95181
95158
|
hasComparisonContent,
|
|
@@ -95224,8 +95201,8 @@ function StatsImpactGrid({
|
|
|
95224
95201
|
const ctaContent = React30.useMemo(() => {
|
|
95225
95202
|
if (ctaSlot) return ctaSlot;
|
|
95226
95203
|
if (!ctaHeading && (!actions || actions.length === 0)) return null;
|
|
95227
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("text-center", ctaClassName), children: [
|
|
95228
|
-
ctaHeading && (typeof ctaHeading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-6 text-2xl font-
|
|
95204
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("text-center mb-12", ctaClassName), children: [
|
|
95205
|
+
ctaHeading && (typeof ctaHeading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-6 text-2xl font-semibold", children: ctaHeading }) : ctaHeading),
|
|
95229
95206
|
actionsContent
|
|
95230
95207
|
] });
|
|
95231
95208
|
}, [ctaSlot, ctaHeading, actions, ctaClassName, actionsContent]);
|