@opensite/ui 1.8.7 → 1.8.9

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.
@@ -930,7 +930,16 @@ var Section = React__namespace.default.forwardRef(
930
930
  }
931
931
  );
932
932
  Section.displayName = "Section";
933
+ var MOBILE_CLASSES = {
934
+ "fit-left": "items-start md:items-center",
935
+ "fit-center": "items-center",
936
+ "fit-right": "items-end md:items-center",
937
+ "full-left": "items-stretch md:items-center",
938
+ "full-center": "items-stretch md:items-center",
939
+ "full-right": "items-stretch md:items-center"
940
+ };
933
941
  function BlockActions({
942
+ mobileConfig,
934
943
  actionsClassName,
935
944
  verticalSpacing = "mt-4 md:mt-8",
936
945
  actions,
@@ -943,13 +952,17 @@ function BlockActions({
943
952
  icon,
944
953
  iconAfter,
945
954
  children,
955
+ href,
956
+ onClick,
946
957
  className: actionClassName,
947
958
  ...pressableProps
948
959
  } = action;
949
960
  return /* @__PURE__ */ jsxRuntime.jsx(
950
961
  Pressable,
951
962
  {
952
- asButton: true,
963
+ href,
964
+ onClick,
965
+ asButton: action.asButton || true,
953
966
  className: actionClassName,
954
967
  ...pressableProps,
955
968
  children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
@@ -963,6 +976,9 @@ function BlockActions({
963
976
  },
964
977
  []
965
978
  );
979
+ const width = mobileConfig?.width ?? "full";
980
+ const position = mobileConfig?.position ?? "center";
981
+ const mobileLayoutClass = MOBILE_CLASSES[`${width}-${position}`];
966
982
  if (actionsSlot) {
967
983
  return /* @__PURE__ */ jsxRuntime.jsx("div", { children: actionsSlot });
968
984
  } else if (actions && actions?.length > 0) {
@@ -971,6 +987,7 @@ function BlockActions({
971
987
  {
972
988
  className: cn(
973
989
  "flex flex-col md:flex-row flex-wrap gap-4",
990
+ mobileLayoutClass,
974
991
  actionsClassName,
975
992
  verticalSpacing
976
993
  ),
@@ -909,7 +909,16 @@ var Section = React__default.forwardRef(
909
909
  }
910
910
  );
911
911
  Section.displayName = "Section";
912
+ var MOBILE_CLASSES = {
913
+ "fit-left": "items-start md:items-center",
914
+ "fit-center": "items-center",
915
+ "fit-right": "items-end md:items-center",
916
+ "full-left": "items-stretch md:items-center",
917
+ "full-center": "items-stretch md:items-center",
918
+ "full-right": "items-stretch md:items-center"
919
+ };
912
920
  function BlockActions({
921
+ mobileConfig,
913
922
  actionsClassName,
914
923
  verticalSpacing = "mt-4 md:mt-8",
915
924
  actions,
@@ -922,13 +931,17 @@ function BlockActions({
922
931
  icon,
923
932
  iconAfter,
924
933
  children,
934
+ href,
935
+ onClick,
925
936
  className: actionClassName,
926
937
  ...pressableProps
927
938
  } = action;
928
939
  return /* @__PURE__ */ jsx(
929
940
  Pressable,
930
941
  {
931
- asButton: true,
942
+ href,
943
+ onClick,
944
+ asButton: action.asButton || true,
932
945
  className: actionClassName,
933
946
  ...pressableProps,
934
947
  children: children ?? /* @__PURE__ */ jsxs(Fragment, { children: [
@@ -942,6 +955,9 @@ function BlockActions({
942
955
  },
943
956
  []
944
957
  );
958
+ const width = mobileConfig?.width ?? "full";
959
+ const position = mobileConfig?.position ?? "center";
960
+ const mobileLayoutClass = MOBILE_CLASSES[`${width}-${position}`];
945
961
  if (actionsSlot) {
946
962
  return /* @__PURE__ */ jsx("div", { children: actionsSlot });
947
963
  } else if (actions && actions?.length > 0) {
@@ -950,6 +966,7 @@ function BlockActions({
950
966
  {
951
967
  className: cn(
952
968
  "flex flex-col md:flex-row flex-wrap gap-4",
969
+ mobileLayoutClass,
953
970
  actionsClassName,
954
971
  verticalSpacing
955
972
  ),
@@ -858,7 +858,16 @@ var Pressable = React3__namespace.forwardRef(
858
858
  }
859
859
  );
860
860
  Pressable.displayName = "Pressable";
861
+ var MOBILE_CLASSES = {
862
+ "fit-left": "items-start md:items-center",
863
+ "fit-center": "items-center",
864
+ "fit-right": "items-end md:items-center",
865
+ "full-left": "items-stretch md:items-center",
866
+ "full-center": "items-stretch md:items-center",
867
+ "full-right": "items-stretch md:items-center"
868
+ };
861
869
  function BlockActions({
870
+ mobileConfig,
862
871
  actionsClassName,
863
872
  verticalSpacing = "mt-4 md:mt-8",
864
873
  actions,
@@ -871,13 +880,17 @@ function BlockActions({
871
880
  icon,
872
881
  iconAfter,
873
882
  children,
883
+ href,
884
+ onClick,
874
885
  className: actionClassName,
875
886
  ...pressableProps
876
887
  } = action;
877
888
  return /* @__PURE__ */ jsxRuntime.jsx(
878
889
  Pressable,
879
890
  {
880
- asButton: true,
891
+ href,
892
+ onClick,
893
+ asButton: action.asButton || true,
881
894
  className: actionClassName,
882
895
  ...pressableProps,
883
896
  children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
@@ -891,6 +904,9 @@ function BlockActions({
891
904
  },
892
905
  []
893
906
  );
907
+ const width = mobileConfig?.width ?? "full";
908
+ const position = mobileConfig?.position ?? "center";
909
+ const mobileLayoutClass = MOBILE_CLASSES[`${width}-${position}`];
894
910
  if (actionsSlot) {
895
911
  return /* @__PURE__ */ jsxRuntime.jsx("div", { children: actionsSlot });
896
912
  } else if (actions && actions?.length > 0) {
@@ -899,6 +915,7 @@ function BlockActions({
899
915
  {
900
916
  className: cn(
901
917
  "flex flex-col md:flex-row flex-wrap gap-4",
918
+ mobileLayoutClass,
902
919
  actionsClassName,
903
920
  verticalSpacing
904
921
  ),
@@ -923,10 +940,10 @@ function HeroStatsSocialProof({
923
940
  statusCard,
924
941
  statusCardSlot,
925
942
  background,
926
- spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
927
943
  pattern,
928
944
  patternOpacity,
929
945
  className,
946
+ spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
930
947
  containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
931
948
  contentClassName,
932
949
  badgeClassName,
@@ -997,7 +1014,8 @@ function HeroStatsSocialProof({
997
1014
  {
998
1015
  actions,
999
1016
  actionsClassName,
1000
- actionsSlot
1017
+ actionsSlot,
1018
+ mobileConfig: { position: "left", width: "fit" }
1001
1019
  }
1002
1020
  ),
1003
1021
  (statsSlot || stats && stats.length > 0) && /* @__PURE__ */ jsxRuntime.jsx(
@@ -115,6 +115,6 @@ interface HeroStatsSocialProofProps {
115
115
  */
116
116
  optixFlowConfig?: OptixFlowConfig;
117
117
  }
118
- declare function HeroStatsSocialProof({ badge, badgeIcon, heading, description, actions, actionsSlot, stats, statsSlot, imageSrc, imageAlt, statusCard, statusCardSlot, background, spacing, pattern, patternOpacity, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, statsClassName, imageClassName, optixFlowConfig, }: HeroStatsSocialProofProps): React.JSX.Element;
118
+ declare function HeroStatsSocialProof({ badge, badgeIcon, heading, description, actions, actionsSlot, stats, statsSlot, imageSrc, imageAlt, statusCard, statusCardSlot, background, pattern, patternOpacity, className, spacing, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, statsClassName, imageClassName, optixFlowConfig, }: HeroStatsSocialProofProps): React.JSX.Element;
119
119
 
120
120
  export { HeroStatsSocialProof, type HeroStatsSocialProofProps };
@@ -115,6 +115,6 @@ interface HeroStatsSocialProofProps {
115
115
  */
116
116
  optixFlowConfig?: OptixFlowConfig;
117
117
  }
118
- declare function HeroStatsSocialProof({ badge, badgeIcon, heading, description, actions, actionsSlot, stats, statsSlot, imageSrc, imageAlt, statusCard, statusCardSlot, background, spacing, pattern, patternOpacity, className, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, statsClassName, imageClassName, optixFlowConfig, }: HeroStatsSocialProofProps): React.JSX.Element;
118
+ declare function HeroStatsSocialProof({ badge, badgeIcon, heading, description, actions, actionsSlot, stats, statsSlot, imageSrc, imageAlt, statusCard, statusCardSlot, background, pattern, patternOpacity, className, spacing, containerClassName, contentClassName, badgeClassName, headingClassName, descriptionClassName, actionsClassName, statsClassName, imageClassName, optixFlowConfig, }: HeroStatsSocialProofProps): React.JSX.Element;
119
119
 
120
120
  export { HeroStatsSocialProof, type HeroStatsSocialProofProps };
@@ -837,7 +837,16 @@ var Pressable = React3.forwardRef(
837
837
  }
838
838
  );
839
839
  Pressable.displayName = "Pressable";
840
+ var MOBILE_CLASSES = {
841
+ "fit-left": "items-start md:items-center",
842
+ "fit-center": "items-center",
843
+ "fit-right": "items-end md:items-center",
844
+ "full-left": "items-stretch md:items-center",
845
+ "full-center": "items-stretch md:items-center",
846
+ "full-right": "items-stretch md:items-center"
847
+ };
840
848
  function BlockActions({
849
+ mobileConfig,
841
850
  actionsClassName,
842
851
  verticalSpacing = "mt-4 md:mt-8",
843
852
  actions,
@@ -850,13 +859,17 @@ function BlockActions({
850
859
  icon,
851
860
  iconAfter,
852
861
  children,
862
+ href,
863
+ onClick,
853
864
  className: actionClassName,
854
865
  ...pressableProps
855
866
  } = action;
856
867
  return /* @__PURE__ */ jsx(
857
868
  Pressable,
858
869
  {
859
- asButton: true,
870
+ href,
871
+ onClick,
872
+ asButton: action.asButton || true,
860
873
  className: actionClassName,
861
874
  ...pressableProps,
862
875
  children: children ?? /* @__PURE__ */ jsxs(Fragment, { children: [
@@ -870,6 +883,9 @@ function BlockActions({
870
883
  },
871
884
  []
872
885
  );
886
+ const width = mobileConfig?.width ?? "full";
887
+ const position = mobileConfig?.position ?? "center";
888
+ const mobileLayoutClass = MOBILE_CLASSES[`${width}-${position}`];
873
889
  if (actionsSlot) {
874
890
  return /* @__PURE__ */ jsx("div", { children: actionsSlot });
875
891
  } else if (actions && actions?.length > 0) {
@@ -878,6 +894,7 @@ function BlockActions({
878
894
  {
879
895
  className: cn(
880
896
  "flex flex-col md:flex-row flex-wrap gap-4",
897
+ mobileLayoutClass,
881
898
  actionsClassName,
882
899
  verticalSpacing
883
900
  ),
@@ -902,10 +919,10 @@ function HeroStatsSocialProof({
902
919
  statusCard,
903
920
  statusCardSlot,
904
921
  background,
905
- spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
906
922
  pattern,
907
923
  patternOpacity,
908
924
  className,
925
+ spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
909
926
  containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
910
927
  contentClassName,
911
928
  badgeClassName,
@@ -976,7 +993,8 @@ function HeroStatsSocialProof({
976
993
  {
977
994
  actions,
978
995
  actionsClassName,
979
- actionsSlot
996
+ actionsSlot,
997
+ mobileConfig: { position: "left", width: "fit" }
980
998
  }
981
999
  ),
982
1000
  (statsSlot || stats && stats.length > 0) && /* @__PURE__ */ jsx(
package/dist/registry.cjs CHANGED
@@ -7269,7 +7269,16 @@ function FooterNavSocial({
7269
7269
  }
7270
7270
  );
7271
7271
  }
7272
+ var MOBILE_CLASSES = {
7273
+ "fit-left": "items-start md:items-center",
7274
+ "fit-center": "items-center",
7275
+ "fit-right": "items-end md:items-center",
7276
+ "full-left": "items-stretch md:items-center",
7277
+ "full-center": "items-stretch md:items-center",
7278
+ "full-right": "items-stretch md:items-center"
7279
+ };
7272
7280
  function BlockActions({
7281
+ mobileConfig,
7273
7282
  actionsClassName,
7274
7283
  verticalSpacing = "mt-4 md:mt-8",
7275
7284
  actions,
@@ -7282,13 +7291,17 @@ function BlockActions({
7282
7291
  icon,
7283
7292
  iconAfter,
7284
7293
  children,
7294
+ href,
7295
+ onClick,
7285
7296
  className: actionClassName,
7286
7297
  ...pressableProps
7287
7298
  } = action;
7288
7299
  return /* @__PURE__ */ jsxRuntime.jsx(
7289
7300
  Pressable,
7290
7301
  {
7291
- asButton: true,
7302
+ href,
7303
+ onClick,
7304
+ asButton: action.asButton || true,
7292
7305
  className: actionClassName,
7293
7306
  ...pressableProps,
7294
7307
  children: children ?? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
@@ -7302,6 +7315,9 @@ function BlockActions({
7302
7315
  },
7303
7316
  []
7304
7317
  );
7318
+ const width = mobileConfig?.width ?? "full";
7319
+ const position = mobileConfig?.position ?? "center";
7320
+ const mobileLayoutClass = MOBILE_CLASSES[`${width}-${position}`];
7305
7321
  if (actionsSlot) {
7306
7322
  return /* @__PURE__ */ jsxRuntime.jsx("div", { children: actionsSlot });
7307
7323
  } else if (actions && actions?.length > 0) {
@@ -7310,6 +7326,7 @@ function BlockActions({
7310
7326
  {
7311
7327
  className: cn(
7312
7328
  "flex flex-col md:flex-row flex-wrap gap-4",
7329
+ mobileLayoutClass,
7313
7330
  actionsClassName,
7314
7331
  verticalSpacing
7315
7332
  ),
@@ -7333,7 +7350,6 @@ function AboutDeveloperProfile({
7333
7350
  actions,
7334
7351
  actionsSlot,
7335
7352
  className,
7336
- containerClassName,
7337
7353
  contentClassName,
7338
7354
  nameClassName,
7339
7355
  roleClassName,
@@ -7345,7 +7361,8 @@ function AboutDeveloperProfile({
7345
7361
  actionsClassName,
7346
7362
  optixFlowConfig,
7347
7363
  background,
7348
- spacing,
7364
+ spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
7365
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
7349
7366
  pattern,
7350
7367
  patternOpacity
7351
7368
  }) {
@@ -7385,7 +7402,7 @@ function AboutDeveloperProfile({
7385
7402
  spacing,
7386
7403
  pattern,
7387
7404
  patternOpacity,
7388
- className: cn(className),
7405
+ className,
7389
7406
  containerClassName,
7390
7407
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mx-auto max-w-4xl", contentClassName), children: [
7391
7408
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-center gap-8 md:flex-row md:items-start", children: [
@@ -8272,25 +8289,10 @@ function AboutStoryExpertise({
8272
8289
  const storyContent = React56.useMemo(() => {
8273
8290
  if (storySlot) return storySlot;
8274
8291
  if (!storyParagraphs || storyParagraphs.length === 0) return null;
8275
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-4", getTextColor(background, "muted"), storyClassName), children: storyParagraphs.map(
8292
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-4", storyClassName), children: storyParagraphs.map(
8276
8293
  (paragraph, idx) => typeof paragraph === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { children: paragraph }, idx) : /* @__PURE__ */ jsxRuntime.jsx("div", { children: paragraph }, idx)
8277
8294
  ) });
8278
8295
  }, [storySlot, storyParagraphs, storyClassName]);
8279
- const actionsContent = React56.useMemo(() => {
8280
- if (actionsSlot) return actionsSlot;
8281
- if (!actions || actions.length === 0) return null;
8282
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("flex flex-wrap gap-4", actionsClassName), children: actions.map((action, idx) => /* @__PURE__ */ jsxRuntime.jsx(
8283
- Pressable,
8284
- {
8285
- href: action.href,
8286
- onClick: action.onClick,
8287
- size: action.size || "lg",
8288
- variant: action.variant || "default",
8289
- children: action.label
8290
- },
8291
- idx
8292
- )) });
8293
- }, [actionsSlot, actions, actionsClassName]);
8294
8296
  const highlightContent = React56.useMemo(() => {
8295
8297
  if (highlightSlot) return highlightSlot;
8296
8298
  if (!highlight) return null;
@@ -8298,18 +8300,26 @@ function AboutStoryExpertise({
8298
8300
  "div",
8299
8301
  {
8300
8302
  className: cn(
8301
- "rounded-2xl border border-border/60 bg-background/90 p-6 shadow-xl",
8303
+ "rounded-2xl border border-border/60 p-6 shadow-xl",
8302
8304
  highlightClassName
8303
8305
  ),
8304
8306
  children: [
8305
8307
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center gap-4", children: [
8306
8308
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-12 w-12 items-center justify-center rounded-full bg-primary text-primary-foreground", children: highlight.icon }),
8307
8309
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
8308
- highlight.label && (typeof highlight.label === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-xs font-semibold uppercase tracking-[0.2em]", getTextColor(background, "muted")), children: highlight.label }) : highlight.label),
8310
+ highlight.label && (typeof highlight.label === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
8311
+ "p",
8312
+ {
8313
+ className: cn(
8314
+ "text-xs font-semibold uppercase tracking-[0.2em]"
8315
+ ),
8316
+ children: highlight.label
8317
+ }
8318
+ ) : highlight.label),
8309
8319
  highlight.title && (typeof highlight.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-lg font-bold", children: highlight.title }) : highlight.title)
8310
8320
  ] })
8311
8321
  ] }),
8312
- highlight.description && (typeof highlight.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm", getTextColor(background, "muted")), children: highlight.description }) : highlight.description)
8322
+ highlight.description && (typeof highlight.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm"), children: highlight.description }) : highlight.description)
8313
8323
  ]
8314
8324
  }
8315
8325
  );
@@ -8333,14 +8343,18 @@ function AboutStoryExpertise({
8333
8343
  transition: { duration: 0.3, delay: idx * 0.05 },
8334
8344
  className: "flex items-start gap-4 rounded-2xl bg-background p-6 shadow-sm transition-all duration-300 hover:-translate-y-1 hover:shadow-lg",
8335
8345
  children: [
8336
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(
8337
- "flex h-12 w-12 items-center justify-center rounded-xl",
8338
- getNestedCardBg(background, "muted"),
8339
- getAccentColor(background)
8340
- ), children: area.icon }),
8346
+ /* @__PURE__ */ jsxRuntime.jsx(
8347
+ "div",
8348
+ {
8349
+ className: cn(
8350
+ "flex h-12 w-12 items-center justify-center rounded-xl"
8351
+ ),
8352
+ children: area.icon
8353
+ }
8354
+ ),
8341
8355
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
8342
8356
  area.title && (typeof area.title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h4", { className: "text-lg font-bold", children: area.title }) : area.title),
8343
- area.description && (typeof area.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mt-1 text-sm", getTextColor(background, "muted")), children: area.description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1", children: area.description }))
8357
+ area.description && (typeof area.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mt-1 text-sm"), children: area.description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1", children: area.description }))
8344
8358
  ] })
8345
8359
  ]
8346
8360
  },
@@ -8374,7 +8388,6 @@ function AboutStoryExpertise({
8374
8388
  {
8375
8389
  className: cn(
8376
8390
  "text-sm font-semibold uppercase tracking-[0.2em]",
8377
- getAccentColor(background),
8378
8391
  eyebrowClassName
8379
8392
  ),
8380
8393
  children: eyebrow
@@ -8392,7 +8405,14 @@ function AboutStoryExpertise({
8392
8405
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-2", headingClassName), children: heading }))
8393
8406
  ] }),
8394
8407
  storyContent,
8395
- actionsContent
8408
+ /* @__PURE__ */ jsxRuntime.jsx(
8409
+ BlockActions,
8410
+ {
8411
+ actions,
8412
+ actionsClassName,
8413
+ actionsSlot
8414
+ }
8415
+ )
8396
8416
  ]
8397
8417
  }
8398
8418
  ),
@@ -8434,12 +8454,11 @@ function AboutStoryExpertise({
8434
8454
  {
8435
8455
  className: cn(
8436
8456
  "mt-20 rounded-3xl p-8 md:p-12",
8437
- getNestedCardBg(background, "subtle"),
8438
8457
  expertiseSectionClassName
8439
8458
  ),
8440
8459
  children: [
8441
8460
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center", children: [
8442
- /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm font-semibold uppercase tracking-[0.2em]", getAccentColor(background)), children: "Our Expertise" }),
8461
+ /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm font-semibold uppercase tracking-[0.2em]"), children: "Our Expertise" }),
8443
8462
  expertiseHeading && (typeof expertiseHeading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
8444
8463
  "h3",
8445
8464
  {
@@ -8455,7 +8474,6 @@ function AboutStoryExpertise({
8455
8474
  {
8456
8475
  className: cn(
8457
8476
  "mx-auto mt-3 max-w-2xl",
8458
- getTextColor(background, "muted"),
8459
8477
  expertiseDescriptionClassName
8460
8478
  ),
8461
8479
  children: expertiseDescription
@@ -56288,10 +56306,10 @@ function HeroStatsSocialProof({
56288
56306
  statusCard,
56289
56307
  statusCardSlot,
56290
56308
  background,
56291
- spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
56292
56309
  pattern,
56293
56310
  patternOpacity,
56294
56311
  className,
56312
+ spacing = "pt-28 pb-8 md:pt-32 md:pb-32",
56295
56313
  containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
56296
56314
  contentClassName,
56297
56315
  badgeClassName,
@@ -56362,7 +56380,8 @@ function HeroStatsSocialProof({
56362
56380
  {
56363
56381
  actions,
56364
56382
  actionsClassName,
56365
- actionsSlot
56383
+ actionsSlot,
56384
+ mobileConfig: { position: "left", width: "fit" }
56366
56385
  }
56367
56386
  ),
56368
56387
  (statsSlot || stats && stats.length > 0) && /* @__PURE__ */ jsxRuntime.jsx(