@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.
Files changed (43) hide show
  1. package/dist/hero-agency-animated-images.cjs +4 -4
  2. package/dist/hero-agency-animated-images.js +4 -4
  3. package/dist/hero-business-carousel-dots.cjs +46 -36
  4. package/dist/hero-business-carousel-dots.js +46 -36
  5. package/dist/hero-coming-soon-countdown.cjs +93 -54
  6. package/dist/hero-coming-soon-countdown.d.cts +31 -6
  7. package/dist/hero-coming-soon-countdown.d.ts +31 -6
  8. package/dist/hero-coming-soon-countdown.js +93 -54
  9. package/dist/hero-creative-studio-stacked.cjs +9 -6
  10. package/dist/hero-creative-studio-stacked.d.cts +5 -1
  11. package/dist/hero-creative-studio-stacked.d.ts +5 -1
  12. package/dist/hero-creative-studio-stacked.js +9 -6
  13. package/dist/hero-customer-support-layered.cjs +1 -1
  14. package/dist/hero-customer-support-layered.js +1 -1
  15. package/dist/hero-developer-tools-code.cjs +2 -2
  16. package/dist/hero-developer-tools-code.js +2 -2
  17. package/dist/hero-digital-agency-fullscreen.cjs +14 -12
  18. package/dist/hero-digital-agency-fullscreen.d.cts +1 -1
  19. package/dist/hero-digital-agency-fullscreen.d.ts +1 -1
  20. package/dist/hero-digital-agency-fullscreen.js +14 -12
  21. package/dist/hero-ecommerce-product-showcase.cjs +76 -57
  22. package/dist/hero-ecommerce-product-showcase.js +76 -57
  23. package/dist/hero-enterprise-security.cjs +81 -60
  24. package/dist/hero-enterprise-security.js +81 -60
  25. package/dist/hero-event-registration.cjs +43 -10
  26. package/dist/hero-event-registration.js +43 -10
  27. package/dist/hero-hiring-animated-text.cjs +661 -639
  28. package/dist/hero-hiring-animated-text.d.cts +1 -9
  29. package/dist/hero-hiring-animated-text.d.ts +1 -9
  30. package/dist/hero-hiring-animated-text.js +657 -635
  31. package/dist/hero-saas-dashboard-preview.cjs +88 -46
  32. package/dist/hero-saas-dashboard-preview.d.cts +34 -19
  33. package/dist/hero-saas-dashboard-preview.d.ts +34 -19
  34. package/dist/hero-saas-dashboard-preview.js +89 -47
  35. package/dist/hero-split-image-newsletter.cjs +91 -49
  36. package/dist/hero-split-image-newsletter.d.cts +33 -18
  37. package/dist/hero-split-image-newsletter.d.ts +33 -18
  38. package/dist/hero-split-image-newsletter.js +92 -50
  39. package/dist/hero-startup-launch-cta.cjs +2 -2
  40. package/dist/hero-startup-launch-cta.js +2 -2
  41. package/dist/registry.cjs +556 -345
  42. package/dist/registry.js +556 -345
  43. 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("div", { className: cn("flex items-center gap-6 pt-4", statsClassName), children: stats.map((stat, index) => /* @__PURE__ */ jsxRuntime.jsxs(React3__namespace.Fragment, { children: [
968
- index > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-12 w-px bg-border" }),
969
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center", children: [
970
- /* @__PURE__ */ jsxRuntime.jsxs(
971
- "div",
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.jsx("div", { className: cn("text-sm"), children: stat.label })
993
- ] })
994
- ] }, index)) });
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
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("grid grid-cols-2 gap-4", imagesClassName), children: [
1000
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
1001
- images[0] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsxRuntime.jsx(
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: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsxRuntime.jsx(
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-8", children: [
1027
- images[2] && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsxRuntime.jsx(
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: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsxRuntime.jsx(
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("div", { className: cn("flex flex-col gap-8 order-2", contentClassName), children: [
1067
- renderBadge,
1068
- heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1069
- "h1",
1070
- {
1071
- className: cn(
1072
- "text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
1073
- headingClassName
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
- children: heading
1076
- }
1077
- ) : heading),
1078
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-lg text-balance", descriptionClassName), children: description }) : description),
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("div", { className: cn("flex items-center gap-6 pt-4", statsClassName), children: stats.map((stat, index) => /* @__PURE__ */ jsxs(React3.Fragment, { children: [
947
- index > 0 && /* @__PURE__ */ jsx("div", { className: "h-12 w-px bg-border" }),
948
- /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
949
- /* @__PURE__ */ jsxs(
950
- "div",
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__ */ jsx("div", { className: cn("text-sm"), children: stat.label })
972
- ] })
973
- ] }, index)) });
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
- return /* @__PURE__ */ jsxs("div", { className: cn("grid grid-cols-2 gap-4", imagesClassName), children: [
979
- /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
980
- images[0] && /* @__PURE__ */ jsx("div", { className: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsx(
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: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsx(
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-8", children: [
1006
- images[2] && /* @__PURE__ */ jsx("div", { className: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsx(
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: cn("overflow-hidden rounded-2xl"), children: /* @__PURE__ */ jsx(
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("div", { className: cn("flex flex-col gap-8 order-2", contentClassName), children: [
1046
- renderBadge,
1047
- heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
1048
- "h1",
1049
- {
1050
- className: cn(
1051
- "text-4xl font-bold tracking-tight md:text-5xl lg:text-6xl text-balance",
1052
- headingClassName
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
- children: heading
1055
- }
1056
- ) : heading),
1057
- description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-lg text-balance", descriptionClassName), children: description }) : description),
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("div", { className: cn("mt-20 grid gap-8 md:grid-cols-3", featuresClassName), children: features.map((feature, index) => /* @__PURE__ */ jsxRuntime.jsxs(
956
- Pressable,
955
+ return /* @__PURE__ */ jsxRuntime.jsx(
956
+ "div",
957
957
  {
958
- href: feature.href,
959
- className: cn("rounded-2xl border border-border p-6 text-center"),
960
- children: [
961
- /* @__PURE__ */ jsxRuntime.jsx(
962
- "div",
963
- {
964
- className: cn(
965
- "mx-auto mb-4 flex h-12 w-12 items-center justify-center rounded-full",
966
- feature.iconBgClass
967
- ),
968
- children: feature.icon ?? /* @__PURE__ */ jsxRuntime.jsx(
969
- DynamicIcon,
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
- name: feature.iconName || "lucide/check",
972
- size: 24,
973
- className: feature.iconColorClass
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
- /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-2 text-lg font-semibold ", children: feature.title }),
979
- feature.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm", children: feature.description })
980
- ]
981
- },
982
- index
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("div", { className: cn("mx-auto max-w-4xl text-center", contentClassName), children: [
997
- badge && /* @__PURE__ */ jsxRuntime.jsxs(Badge, { className: cn("px-4", badgeClassName), children: [
998
- badgeIcon,
999
- typeof badge === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { children: badge }) : badge
1000
- ] }),
1001
- heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1002
- "h1",
1003
- {
1004
- className: cn(
1005
- "mb-8 text-4xl font-normal text-balance md:text-7xl",
1006
- headingClassName
1007
- ),
1008
- children: heading
1009
- }
1010
- ) : heading),
1011
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1012
- "p",
1013
- {
1014
- className: cn(
1015
- "mb-12 max-w-full md:max-w-[70%] text-lg md:text-xl font-normal text-balance",
1016
- descriptionClassName
1017
- ),
1018
- children: description
1019
- }
1020
- ) : description),
1021
- /* @__PURE__ */ jsxRuntime.jsx(
1022
- BlockActions,
1023
- {
1024
- actions,
1025
- actionsSlot,
1026
- actionsClassName
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
  }