@opensite/ui 2.0.8 → 2.1.0
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/hero-agency-animated-images.cjs +4 -4
- package/dist/hero-agency-animated-images.js +4 -4
- package/dist/hero-business-carousel-dots.cjs +46 -36
- package/dist/hero-business-carousel-dots.js +46 -36
- package/dist/hero-coming-soon-countdown.cjs +93 -54
- package/dist/hero-coming-soon-countdown.d.cts +31 -6
- package/dist/hero-coming-soon-countdown.d.ts +31 -6
- package/dist/hero-coming-soon-countdown.js +93 -54
- package/dist/hero-creative-studio-stacked.cjs +9 -6
- package/dist/hero-creative-studio-stacked.d.cts +5 -1
- package/dist/hero-creative-studio-stacked.d.ts +5 -1
- package/dist/hero-creative-studio-stacked.js +9 -6
- package/dist/hero-customer-support-layered.cjs +1 -1
- package/dist/hero-customer-support-layered.js +1 -1
- package/dist/hero-developer-tools-code.cjs +2 -2
- package/dist/hero-developer-tools-code.js +2 -2
- package/dist/hero-digital-agency-fullscreen.cjs +14 -12
- package/dist/hero-digital-agency-fullscreen.d.cts +1 -1
- package/dist/hero-digital-agency-fullscreen.d.ts +1 -1
- package/dist/hero-digital-agency-fullscreen.js +14 -12
- package/dist/hero-ecommerce-product-showcase.cjs +76 -57
- package/dist/hero-ecommerce-product-showcase.js +76 -57
- package/dist/hero-enterprise-security.cjs +81 -60
- package/dist/hero-enterprise-security.js +81 -60
- package/dist/hero-event-registration.cjs +43 -10
- package/dist/hero-event-registration.js +43 -10
- package/dist/hero-hiring-animated-text.cjs +661 -639
- package/dist/hero-hiring-animated-text.d.cts +1 -9
- package/dist/hero-hiring-animated-text.d.ts +1 -9
- package/dist/hero-hiring-animated-text.js +657 -635
- package/dist/hero-saas-dashboard-preview.cjs +88 -46
- package/dist/hero-saas-dashboard-preview.d.cts +34 -19
- package/dist/hero-saas-dashboard-preview.d.ts +34 -19
- package/dist/hero-saas-dashboard-preview.js +89 -47
- package/dist/hero-split-image-newsletter.cjs +91 -49
- package/dist/hero-split-image-newsletter.d.cts +33 -18
- package/dist/hero-split-image-newsletter.d.ts +33 -18
- package/dist/hero-split-image-newsletter.js +92 -50
- package/dist/hero-startup-launch-cta.cjs +2 -2
- package/dist/hero-startup-launch-cta.js +2 -2
- package/dist/registry.cjs +556 -345
- package/dist/registry.js +556 -345
- package/package.json +1 -1
|
@@ -964,41 +964,51 @@ function HeroEcommerceProductShowcase({
|
|
|
964
964
|
const renderStats = React3.useMemo(() => {
|
|
965
965
|
if (statsSlot) return statsSlot;
|
|
966
966
|
if (!stats || stats.length === 0) return null;
|
|
967
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
"
|
|
972
|
-
|
|
973
|
-
className: cn(
|
|
974
|
-
"flex items-center",
|
|
975
|
-
stat.icon ? "justify-between" : "justify-center"
|
|
976
|
-
),
|
|
977
|
-
children: [
|
|
978
|
-
stat.icon,
|
|
979
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
980
|
-
"div",
|
|
981
|
-
{
|
|
982
|
-
className: cn(
|
|
983
|
-
"font-bold ",
|
|
984
|
-
stat.icon ? "text-xl" : "text-2xl"
|
|
985
|
-
),
|
|
986
|
-
children: stat.value
|
|
987
|
-
}
|
|
988
|
-
)
|
|
989
|
-
]
|
|
990
|
-
}
|
|
967
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
968
|
+
"div",
|
|
969
|
+
{
|
|
970
|
+
className: cn(
|
|
971
|
+
"flex flex-col md:flex-row items-center gap-4 md:gap-6 pt-8 md:pt-12",
|
|
972
|
+
statsClassName
|
|
991
973
|
),
|
|
992
|
-
/* @__PURE__ */ jsxRuntime.
|
|
993
|
-
|
|
994
|
-
|
|
974
|
+
children: stats.map((stat, index) => /* @__PURE__ */ jsxRuntime.jsxs(React3__namespace.Fragment, { children: [
|
|
975
|
+
index > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-12 w-px bg-border hidden md:flex" }),
|
|
976
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 justify-between flex-row md:flex-col text-left md:text-center w-full md:w-fit border md:border-none rounded-xl md:rounded-none p-4 md:p-0", children: [
|
|
977
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
978
|
+
"div",
|
|
979
|
+
{
|
|
980
|
+
className: cn(
|
|
981
|
+
"flex items-center gap-2 w-fit md:w-full",
|
|
982
|
+
stat.icon ? "justify-between" : "justify-center"
|
|
983
|
+
),
|
|
984
|
+
children: [
|
|
985
|
+
stat.icon,
|
|
986
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
987
|
+
"div",
|
|
988
|
+
{
|
|
989
|
+
className: cn(
|
|
990
|
+
"font-bold ",
|
|
991
|
+
stat.icon ? "text-xl" : "text-2xl"
|
|
992
|
+
),
|
|
993
|
+
children: stat.value
|
|
994
|
+
}
|
|
995
|
+
)
|
|
996
|
+
]
|
|
997
|
+
}
|
|
998
|
+
),
|
|
999
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm"), children: stat.label })
|
|
1000
|
+
] })
|
|
1001
|
+
] }, index))
|
|
1002
|
+
}
|
|
1003
|
+
);
|
|
995
1004
|
}, [statsSlot, stats, statsClassName]);
|
|
996
1005
|
const renderImages = React3.useMemo(() => {
|
|
997
1006
|
if (imagesSlot) return imagesSlot;
|
|
998
1007
|
if (!images || images.length === 0) return null;
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1008
|
+
const imgClassWrapper = "overflow-hidden rounded-3xl ring-4 ring-primary shadow-2xl";
|
|
1009
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("grid grid-cols-2 gap-4 md:gap-8", imagesClassName), children: [
|
|
1010
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4 md:space-y-8", children: [
|
|
1011
|
+
images[0] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1002
1012
|
img.Img,
|
|
1003
1013
|
{
|
|
1004
1014
|
src: images[0].src,
|
|
@@ -1010,7 +1020,7 @@ function HeroEcommerceProductShowcase({
|
|
|
1010
1020
|
optixFlowConfig
|
|
1011
1021
|
}
|
|
1012
1022
|
) }),
|
|
1013
|
-
images[1] && /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
1023
|
+
images[1] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1014
1024
|
img.Img,
|
|
1015
1025
|
{
|
|
1016
1026
|
src: images[1].src,
|
|
@@ -1023,8 +1033,8 @@ function HeroEcommerceProductShowcase({
|
|
|
1023
1033
|
}
|
|
1024
1034
|
) })
|
|
1025
1035
|
] }),
|
|
1026
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4 pt-
|
|
1027
|
-
images[2] && /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
1036
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4 md:space-y-8 pt-12", children: [
|
|
1037
|
+
images[2] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1028
1038
|
img.Img,
|
|
1029
1039
|
{
|
|
1030
1040
|
src: images[2].src,
|
|
@@ -1036,7 +1046,7 @@ function HeroEcommerceProductShowcase({
|
|
|
1036
1046
|
optixFlowConfig
|
|
1037
1047
|
}
|
|
1038
1048
|
) }),
|
|
1039
|
-
images[3] && /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
1049
|
+
images[3] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1040
1050
|
img.Img,
|
|
1041
1051
|
{
|
|
1042
1052
|
src: images[3].src,
|
|
@@ -1062,30 +1072,39 @@ function HeroEcommerceProductShowcase({
|
|
|
1062
1072
|
className,
|
|
1063
1073
|
containerClassName,
|
|
1064
1074
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "pt-8 md:pt-0", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid items-center gap-12 lg:grid-cols-2 lg:gap-20", children: [
|
|
1065
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "order-1", children: renderImages }),
|
|
1066
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1075
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "order-2 md:order-1", children: renderImages }),
|
|
1076
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1077
|
+
"div",
|
|
1078
|
+
{
|
|
1079
|
+
className: cn(
|
|
1080
|
+
"flex flex-col gap-4 md:gap-6 order-1 md:order-2",
|
|
1081
|
+
contentClassName
|
|
1082
|
+
),
|
|
1083
|
+
children: [
|
|
1084
|
+
renderBadge,
|
|
1085
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1086
|
+
"h1",
|
|
1087
|
+
{
|
|
1088
|
+
className: cn(
|
|
1089
|
+
"text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
|
|
1090
|
+
headingClassName
|
|
1091
|
+
),
|
|
1092
|
+
children: heading
|
|
1093
|
+
}
|
|
1094
|
+
) : heading),
|
|
1095
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-lg text-balance", descriptionClassName), children: description }) : description),
|
|
1096
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1097
|
+
BlockActions,
|
|
1098
|
+
{
|
|
1099
|
+
actions,
|
|
1100
|
+
actionsSlot,
|
|
1101
|
+
actionsClassName
|
|
1102
|
+
}
|
|
1074
1103
|
),
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1080
|
-
BlockActions,
|
|
1081
|
-
{
|
|
1082
|
-
actions,
|
|
1083
|
-
actionsSlot,
|
|
1084
|
-
actionsClassName
|
|
1085
|
-
}
|
|
1086
|
-
),
|
|
1087
|
-
renderStats
|
|
1088
|
-
] })
|
|
1104
|
+
renderStats
|
|
1105
|
+
]
|
|
1106
|
+
}
|
|
1107
|
+
)
|
|
1089
1108
|
] }) })
|
|
1090
1109
|
}
|
|
1091
1110
|
);
|
|
@@ -943,41 +943,51 @@ function HeroEcommerceProductShowcase({
|
|
|
943
943
|
const renderStats = useMemo(() => {
|
|
944
944
|
if (statsSlot) return statsSlot;
|
|
945
945
|
if (!stats || stats.length === 0) return null;
|
|
946
|
-
return /* @__PURE__ */ jsx(
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
"
|
|
951
|
-
|
|
952
|
-
className: cn(
|
|
953
|
-
"flex items-center",
|
|
954
|
-
stat.icon ? "justify-between" : "justify-center"
|
|
955
|
-
),
|
|
956
|
-
children: [
|
|
957
|
-
stat.icon,
|
|
958
|
-
/* @__PURE__ */ jsx(
|
|
959
|
-
"div",
|
|
960
|
-
{
|
|
961
|
-
className: cn(
|
|
962
|
-
"font-bold ",
|
|
963
|
-
stat.icon ? "text-xl" : "text-2xl"
|
|
964
|
-
),
|
|
965
|
-
children: stat.value
|
|
966
|
-
}
|
|
967
|
-
)
|
|
968
|
-
]
|
|
969
|
-
}
|
|
946
|
+
return /* @__PURE__ */ jsx(
|
|
947
|
+
"div",
|
|
948
|
+
{
|
|
949
|
+
className: cn(
|
|
950
|
+
"flex flex-col md:flex-row items-center gap-4 md:gap-6 pt-8 md:pt-12",
|
|
951
|
+
statsClassName
|
|
970
952
|
),
|
|
971
|
-
/* @__PURE__ */
|
|
972
|
-
|
|
973
|
-
|
|
953
|
+
children: stats.map((stat, index) => /* @__PURE__ */ jsxs(React3.Fragment, { children: [
|
|
954
|
+
index > 0 && /* @__PURE__ */ jsx("div", { className: "h-12 w-px bg-border hidden md:flex" }),
|
|
955
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 justify-between flex-row md:flex-col text-left md:text-center w-full md:w-fit border md:border-none rounded-xl md:rounded-none p-4 md:p-0", children: [
|
|
956
|
+
/* @__PURE__ */ jsxs(
|
|
957
|
+
"div",
|
|
958
|
+
{
|
|
959
|
+
className: cn(
|
|
960
|
+
"flex items-center gap-2 w-fit md:w-full",
|
|
961
|
+
stat.icon ? "justify-between" : "justify-center"
|
|
962
|
+
),
|
|
963
|
+
children: [
|
|
964
|
+
stat.icon,
|
|
965
|
+
/* @__PURE__ */ jsx(
|
|
966
|
+
"div",
|
|
967
|
+
{
|
|
968
|
+
className: cn(
|
|
969
|
+
"font-bold ",
|
|
970
|
+
stat.icon ? "text-xl" : "text-2xl"
|
|
971
|
+
),
|
|
972
|
+
children: stat.value
|
|
973
|
+
}
|
|
974
|
+
)
|
|
975
|
+
]
|
|
976
|
+
}
|
|
977
|
+
),
|
|
978
|
+
/* @__PURE__ */ jsx("div", { className: cn("text-sm"), children: stat.label })
|
|
979
|
+
] })
|
|
980
|
+
] }, index))
|
|
981
|
+
}
|
|
982
|
+
);
|
|
974
983
|
}, [statsSlot, stats, statsClassName]);
|
|
975
984
|
const renderImages = useMemo(() => {
|
|
976
985
|
if (imagesSlot) return imagesSlot;
|
|
977
986
|
if (!images || images.length === 0) return null;
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
987
|
+
const imgClassWrapper = "overflow-hidden rounded-3xl ring-4 ring-primary shadow-2xl";
|
|
988
|
+
return /* @__PURE__ */ jsxs("div", { className: cn("grid grid-cols-2 gap-4 md:gap-8", imagesClassName), children: [
|
|
989
|
+
/* @__PURE__ */ jsxs("div", { className: "space-y-4 md:space-y-8", children: [
|
|
990
|
+
images[0] && /* @__PURE__ */ jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsx(
|
|
981
991
|
Img,
|
|
982
992
|
{
|
|
983
993
|
src: images[0].src,
|
|
@@ -989,7 +999,7 @@ function HeroEcommerceProductShowcase({
|
|
|
989
999
|
optixFlowConfig
|
|
990
1000
|
}
|
|
991
1001
|
) }),
|
|
992
|
-
images[1] && /* @__PURE__ */ jsx("div", { className:
|
|
1002
|
+
images[1] && /* @__PURE__ */ jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsx(
|
|
993
1003
|
Img,
|
|
994
1004
|
{
|
|
995
1005
|
src: images[1].src,
|
|
@@ -1002,8 +1012,8 @@ function HeroEcommerceProductShowcase({
|
|
|
1002
1012
|
}
|
|
1003
1013
|
) })
|
|
1004
1014
|
] }),
|
|
1005
|
-
/* @__PURE__ */ jsxs("div", { className: "space-y-4 pt-
|
|
1006
|
-
images[2] && /* @__PURE__ */ jsx("div", { className:
|
|
1015
|
+
/* @__PURE__ */ jsxs("div", { className: "space-y-4 md:space-y-8 pt-12", children: [
|
|
1016
|
+
images[2] && /* @__PURE__ */ jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsx(
|
|
1007
1017
|
Img,
|
|
1008
1018
|
{
|
|
1009
1019
|
src: images[2].src,
|
|
@@ -1015,7 +1025,7 @@ function HeroEcommerceProductShowcase({
|
|
|
1015
1025
|
optixFlowConfig
|
|
1016
1026
|
}
|
|
1017
1027
|
) }),
|
|
1018
|
-
images[3] && /* @__PURE__ */ jsx("div", { className:
|
|
1028
|
+
images[3] && /* @__PURE__ */ jsx("div", { className: imgClassWrapper, children: /* @__PURE__ */ jsx(
|
|
1019
1029
|
Img,
|
|
1020
1030
|
{
|
|
1021
1031
|
src: images[3].src,
|
|
@@ -1041,30 +1051,39 @@ function HeroEcommerceProductShowcase({
|
|
|
1041
1051
|
className,
|
|
1042
1052
|
containerClassName,
|
|
1043
1053
|
children: /* @__PURE__ */ jsx("div", { className: "pt-8 md:pt-0", children: /* @__PURE__ */ jsxs("div", { className: "grid items-center gap-12 lg:grid-cols-2 lg:gap-20", children: [
|
|
1044
|
-
/* @__PURE__ */ jsx("div", { className: "order-1", children: renderImages }),
|
|
1045
|
-
/* @__PURE__ */ jsxs(
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1054
|
+
/* @__PURE__ */ jsx("div", { className: "order-2 md:order-1", children: renderImages }),
|
|
1055
|
+
/* @__PURE__ */ jsxs(
|
|
1056
|
+
"div",
|
|
1057
|
+
{
|
|
1058
|
+
className: cn(
|
|
1059
|
+
"flex flex-col gap-4 md:gap-6 order-1 md:order-2",
|
|
1060
|
+
contentClassName
|
|
1061
|
+
),
|
|
1062
|
+
children: [
|
|
1063
|
+
renderBadge,
|
|
1064
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
1065
|
+
"h1",
|
|
1066
|
+
{
|
|
1067
|
+
className: cn(
|
|
1068
|
+
"text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
|
|
1069
|
+
headingClassName
|
|
1070
|
+
),
|
|
1071
|
+
children: heading
|
|
1072
|
+
}
|
|
1073
|
+
) : heading),
|
|
1074
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-lg text-balance", descriptionClassName), children: description }) : description),
|
|
1075
|
+
/* @__PURE__ */ jsx(
|
|
1076
|
+
BlockActions,
|
|
1077
|
+
{
|
|
1078
|
+
actions,
|
|
1079
|
+
actionsSlot,
|
|
1080
|
+
actionsClassName
|
|
1081
|
+
}
|
|
1053
1082
|
),
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
/* @__PURE__ */ jsx(
|
|
1059
|
-
BlockActions,
|
|
1060
|
-
{
|
|
1061
|
-
actions,
|
|
1062
|
-
actionsSlot,
|
|
1063
|
-
actionsClassName
|
|
1064
|
-
}
|
|
1065
|
-
),
|
|
1066
|
-
renderStats
|
|
1067
|
-
] })
|
|
1083
|
+
renderStats
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
)
|
|
1068
1087
|
] }) })
|
|
1069
1088
|
}
|
|
1070
1089
|
);
|
|
@@ -952,35 +952,47 @@ function HeroEnterpriseSecurity({
|
|
|
952
952
|
const renderFeatures = React.useMemo(() => {
|
|
953
953
|
if (featuresSlot) return featuresSlot;
|
|
954
954
|
if (!features || features.length === 0) return null;
|
|
955
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
956
|
-
|
|
955
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
956
|
+
"div",
|
|
957
957
|
{
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
958
|
+
className: cn(
|
|
959
|
+
"mt-12 md:mt-20 grid gap-4 md:gap-8 grid-cols-1 md:grid-cols-3",
|
|
960
|
+
featuresClassName
|
|
961
|
+
),
|
|
962
|
+
children: features.map((feature, index) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
963
|
+
Pressable,
|
|
964
|
+
{
|
|
965
|
+
href: feature.href,
|
|
966
|
+
className: cn(
|
|
967
|
+
"rounded-2xl border border-border p-6 text-center",
|
|
968
|
+
"transition-all duration-500 hover:ring-2 hover:shadow-lg"
|
|
969
|
+
),
|
|
970
|
+
children: [
|
|
971
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
972
|
+
"div",
|
|
970
973
|
{
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
+
className: cn(
|
|
975
|
+
"mx-auto mb-4 flex h-12 w-12 items-center justify-center rounded-full",
|
|
976
|
+
feature.iconBgClass
|
|
977
|
+
),
|
|
978
|
+
children: feature.icon ?? /* @__PURE__ */ jsxRuntime.jsx(
|
|
979
|
+
DynamicIcon,
|
|
980
|
+
{
|
|
981
|
+
name: feature.iconName || "lucide/check",
|
|
982
|
+
size: 24,
|
|
983
|
+
className: feature.iconColorClass
|
|
984
|
+
}
|
|
985
|
+
)
|
|
974
986
|
}
|
|
975
|
-
)
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
)
|
|
987
|
+
),
|
|
988
|
+
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-2 text-lg font-semibold ", children: feature.title }),
|
|
989
|
+
feature.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm", children: feature.description })
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
index
|
|
993
|
+
))
|
|
994
|
+
}
|
|
995
|
+
);
|
|
984
996
|
}, [featuresSlot, features, featuresClassName]);
|
|
985
997
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
986
998
|
Section,
|
|
@@ -993,40 +1005,49 @@ function HeroEnterpriseSecurity({
|
|
|
993
1005
|
className,
|
|
994
1006
|
containerClassName,
|
|
995
1007
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "pt-8 md:pt-0", children: [
|
|
996
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
className: cn(
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
),
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
),
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1008
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1009
|
+
"div",
|
|
1010
|
+
{
|
|
1011
|
+
className: cn(
|
|
1012
|
+
"mx-auto max-w-4xl text-center flex flex-col items-center gap-6",
|
|
1013
|
+
contentClassName
|
|
1014
|
+
),
|
|
1015
|
+
children: [
|
|
1016
|
+
badge && /* @__PURE__ */ jsxRuntime.jsxs(Badge, { className: cn("px-4", badgeClassName), children: [
|
|
1017
|
+
badgeIcon,
|
|
1018
|
+
typeof badge === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { children: badge }) : badge
|
|
1019
|
+
] }),
|
|
1020
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1021
|
+
"h1",
|
|
1022
|
+
{
|
|
1023
|
+
className: cn(
|
|
1024
|
+
"text-4xl font-bold text-balance md:text-7xl",
|
|
1025
|
+
headingClassName
|
|
1026
|
+
),
|
|
1027
|
+
children: heading
|
|
1028
|
+
}
|
|
1029
|
+
) : heading),
|
|
1030
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1031
|
+
"p",
|
|
1032
|
+
{
|
|
1033
|
+
className: cn(
|
|
1034
|
+
"max-w-full md:max-w-[70%] text-lg md:text-xl font-normal text-balance",
|
|
1035
|
+
descriptionClassName
|
|
1036
|
+
),
|
|
1037
|
+
children: description
|
|
1038
|
+
}
|
|
1039
|
+
) : description),
|
|
1040
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1041
|
+
BlockActions,
|
|
1042
|
+
{
|
|
1043
|
+
actions,
|
|
1044
|
+
actionsSlot,
|
|
1045
|
+
actionsClassName
|
|
1046
|
+
}
|
|
1047
|
+
)
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
),
|
|
1030
1051
|
renderFeatures
|
|
1031
1052
|
] })
|
|
1032
1053
|
}
|