@opensite/ui 1.2.9 → 1.3.1

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 (49) hide show
  1. package/dist/carousel-scale-focus.cjs +3 -2
  2. package/dist/carousel-scale-focus.d.cts +5 -1
  3. package/dist/carousel-scale-focus.d.ts +5 -1
  4. package/dist/carousel-scale-focus.js +3 -2
  5. package/dist/feature-badge-grid-six.cjs +88 -13
  6. package/dist/feature-badge-grid-six.d.cts +1 -1
  7. package/dist/feature-badge-grid-six.d.ts +1 -1
  8. package/dist/feature-badge-grid-six.js +88 -13
  9. package/dist/feature-capabilities-grid.cjs +5 -6
  10. package/dist/feature-capabilities-grid.js +5 -6
  11. package/dist/feature-category-image-cards.cjs +1 -1
  12. package/dist/feature-category-image-cards.d.cts +1 -1
  13. package/dist/feature-category-image-cards.d.ts +1 -1
  14. package/dist/feature-category-image-cards.js +1 -1
  15. package/dist/feature-checklist-image.cjs +5 -5
  16. package/dist/feature-checklist-image.js +5 -5
  17. package/dist/feature-icon-grid-accent.cjs +6 -6
  18. package/dist/feature-icon-grid-accent.js +6 -6
  19. package/dist/feature-icon-grid-bordered.cjs +5 -10
  20. package/dist/feature-icon-grid-bordered.d.cts +1 -1
  21. package/dist/feature-icon-grid-bordered.d.ts +1 -1
  22. package/dist/feature-icon-grid-bordered.js +5 -10
  23. package/dist/feature-icon-grid-muted.cjs +1 -1
  24. package/dist/feature-icon-grid-muted.js +1 -1
  25. package/dist/feature-icon-tabs-content.cjs +91 -109
  26. package/dist/feature-icon-tabs-content.js +91 -109
  27. package/dist/feature-image-cards-three-column.cjs +23 -17
  28. package/dist/feature-image-cards-three-column.d.cts +1 -1
  29. package/dist/feature-image-cards-three-column.d.ts +1 -1
  30. package/dist/feature-image-cards-three-column.js +23 -17
  31. package/dist/feature-numbered-cards.cjs +2 -2
  32. package/dist/feature-numbered-cards.js +2 -2
  33. package/dist/feature-pattern-grid-links.cjs +142 -29
  34. package/dist/feature-pattern-grid-links.d.cts +21 -1
  35. package/dist/feature-pattern-grid-links.d.ts +21 -1
  36. package/dist/feature-pattern-grid-links.js +142 -29
  37. package/dist/feature-tabbed-content-image.cjs +1 -1
  38. package/dist/feature-tabbed-content-image.d.cts +1 -1
  39. package/dist/feature-tabbed-content-image.d.ts +1 -1
  40. package/dist/feature-tabbed-content-image.js +1 -1
  41. package/dist/feature-three-column-values.cjs +474 -37
  42. package/dist/feature-three-column-values.d.cts +4 -0
  43. package/dist/feature-three-column-values.d.ts +4 -0
  44. package/dist/feature-three-column-values.js +474 -37
  45. package/dist/feature-utility-cards-grid.cjs +21 -5
  46. package/dist/feature-utility-cards-grid.js +21 -5
  47. package/dist/registry.cjs +449 -240
  48. package/dist/registry.js +449 -240
  49. package/package.json +1 -1
@@ -1139,7 +1139,8 @@ function CarouselScaleFocus({
1139
1139
  indicatorClassName,
1140
1140
  startIndex = 1,
1141
1141
  background,
1142
- spacing,
1142
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1143
+ spacing = "py-12 md:py-32",
1143
1144
  pattern,
1144
1145
  patternOpacity,
1145
1146
  patternClassName,
@@ -1249,7 +1250,7 @@ function CarouselScaleFocus({
1249
1250
  patternOpacity,
1250
1251
  patternClassName,
1251
1252
  className: cn("overflow-hidden", className),
1252
- containerClassName: "px-6 sm:px-6 md:px-8 lg:px-8",
1253
+ containerClassName,
1253
1254
  children: [
1254
1255
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:px-45", children: [
1255
1256
  title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
@@ -109,6 +109,10 @@ interface CarouselScaleFocusProps {
109
109
  * OptixFlow image optimization configuration
110
110
  */
111
111
  optixFlowConfig?: OptixFlowConfig;
112
+ /**
113
+ * Additional CSS classes for the container
114
+ */
115
+ containerClassName?: string;
112
116
  }
113
117
  /**
114
118
  * CarouselScaleFocus displays images with a scale and opacity focus effect.
@@ -130,6 +134,6 @@ interface CarouselScaleFocusProps {
130
134
  * />
131
135
  * ```
132
136
  */
133
- declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
137
+ declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
134
138
 
135
139
  export { CarouselScaleFocus, type CarouselScaleFocusImage, type CarouselScaleFocusProps };
@@ -109,6 +109,10 @@ interface CarouselScaleFocusProps {
109
109
  * OptixFlow image optimization configuration
110
110
  */
111
111
  optixFlowConfig?: OptixFlowConfig;
112
+ /**
113
+ * Additional CSS classes for the container
114
+ */
115
+ containerClassName?: string;
112
116
  }
113
117
  /**
114
118
  * CarouselScaleFocus displays images with a scale and opacity focus effect.
@@ -130,6 +134,6 @@ interface CarouselScaleFocusProps {
130
134
  * />
131
135
  * ```
132
136
  */
133
- declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
137
+ declare function CarouselScaleFocus({ title, description, titleClassName, descriptionClassName, images, imagesSlot, className, carouselClassName, carouselContentClassName, itemClassName, imageClassName, controlsClassName, indicatorsClassName, indicatorClassName, startIndex, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, optixFlowConfig, }: CarouselScaleFocusProps): React.JSX.Element;
134
138
 
135
139
  export { CarouselScaleFocus, type CarouselScaleFocusImage, type CarouselScaleFocusProps };
@@ -1115,7 +1115,8 @@ function CarouselScaleFocus({
1115
1115
  indicatorClassName,
1116
1116
  startIndex = 1,
1117
1117
  background,
1118
- spacing,
1118
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1119
+ spacing = "py-12 md:py-32",
1119
1120
  pattern,
1120
1121
  patternOpacity,
1121
1122
  patternClassName,
@@ -1225,7 +1226,7 @@ function CarouselScaleFocus({
1225
1226
  patternOpacity,
1226
1227
  patternClassName,
1227
1228
  className: cn("overflow-hidden", className),
1228
- containerClassName: "px-6 sm:px-6 md:px-8 lg:px-8",
1229
+ containerClassName,
1229
1230
  children: [
1230
1231
  /* @__PURE__ */ jsxs("div", { className: "md:px-45", children: [
1231
1232
  title || description ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-4 mb-6 md:mb-16 text-center", children: [
@@ -997,7 +997,8 @@ function FeatureBadgeGridSix({
997
997
  action,
998
998
  actionSlot,
999
999
  className,
1000
- containerClassName,
1000
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
1001
+ spacing = "py-12 md:py-32",
1001
1002
  headerClassName,
1002
1003
  badgeClassName,
1003
1004
  titleClassName,
@@ -1005,7 +1006,6 @@ function FeatureBadgeGridSix({
1005
1006
  cardClassName,
1006
1007
  actionContainerClassName,
1007
1008
  background,
1008
- spacing,
1009
1009
  pattern,
1010
1010
  patternOpacity,
1011
1011
  patternClassName
@@ -1037,12 +1037,54 @@ function FeatureBadgeGridSix({
1037
1037
  return /* @__PURE__ */ jsxRuntime.jsxs(
1038
1038
  "div",
1039
1039
  {
1040
- className: cn("flex gap-6 space-y-4 rounded-lg md:block", cardClassName, feature.className),
1040
+ className: cn(
1041
+ "flex gap-6 space-y-4 rounded-lg md:block",
1042
+ cardClassName,
1043
+ feature.className
1044
+ ),
1041
1045
  children: [
1042
- iconContent && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-full bg-primary text-primary-foreground md:size-12", children: iconContent }),
1046
+ iconContent && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-card text-card-foreground md:size-12 shadow-sm border", children: iconContent }),
1043
1047
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
1044
- feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading })),
1045
- feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }))
1048
+ feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1049
+ "h3",
1050
+ {
1051
+ className: cn(
1052
+ "font-medium md:mb-2 md:text-xl",
1053
+ feature.headingClassName
1054
+ ),
1055
+ children: feature.heading
1056
+ }
1057
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1058
+ "div",
1059
+ {
1060
+ className: cn(
1061
+ "font-medium md:mb-2 md:text-xl",
1062
+ feature.headingClassName
1063
+ ),
1064
+ children: feature.heading
1065
+ }
1066
+ )),
1067
+ feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1068
+ "p",
1069
+ {
1070
+ className: cn(
1071
+ "text-sm md:text-base",
1072
+ getTextColor(background, "muted"),
1073
+ feature.descriptionClassName
1074
+ ),
1075
+ children: feature.description
1076
+ }
1077
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1078
+ "div",
1079
+ {
1080
+ className: cn(
1081
+ "text-sm md:text-base",
1082
+ getTextColor(background, "muted"),
1083
+ feature.descriptionClassName
1084
+ ),
1085
+ children: feature.description
1086
+ }
1087
+ ))
1046
1088
  ] })
1047
1089
  ]
1048
1090
  },
@@ -1086,7 +1128,7 @@ function FeatureBadgeGridSix({
1086
1128
  }
1087
1129
  );
1088
1130
  }, [actionSlot, action]);
1089
- return /* @__PURE__ */ jsxRuntime.jsxs(
1131
+ return /* @__PURE__ */ jsxRuntime.jsx(
1090
1132
  Section,
1091
1133
  {
1092
1134
  background,
@@ -1096,14 +1138,47 @@ function FeatureBadgeGridSix({
1096
1138
  patternClassName,
1097
1139
  className,
1098
1140
  containerClassName,
1099
- children: [
1100
- (label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-12 flex max-w-3xl flex-col gap-4", headerClassName), children: [
1141
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1142
+ (label || badgeSlot || title) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
1101
1143
  badgeContent,
1102
- title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h2", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }))
1144
+ title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
1145
+ "h2",
1146
+ {
1147
+ className: cn(
1148
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1149
+ titleClassName
1150
+ ),
1151
+ children: title
1152
+ }
1153
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1154
+ "div",
1155
+ {
1156
+ className: cn(
1157
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1158
+ titleClassName
1159
+ ),
1160
+ children: title
1161
+ }
1162
+ ))
1103
1163
  ] }),
1104
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("grid gap-12 md:grid-cols-2", gridClassName), children: featuresContent }),
1105
- (action || actionSlot) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-16 flex justify-center", actionContainerClassName), children: actionContent })
1106
- ]
1164
+ /* @__PURE__ */ jsxRuntime.jsx(
1165
+ "div",
1166
+ {
1167
+ className: cn(
1168
+ "grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
1169
+ gridClassName
1170
+ ),
1171
+ children: featuresContent
1172
+ }
1173
+ ),
1174
+ (action || actionSlot) && /* @__PURE__ */ jsxRuntime.jsx(
1175
+ "div",
1176
+ {
1177
+ className: cn("mt-8 flex justify-center", actionContainerClassName),
1178
+ children: actionContent
1179
+ }
1180
+ )
1181
+ ] })
1107
1182
  }
1108
1183
  );
1109
1184
  }
@@ -141,6 +141,6 @@ interface FeatureBadgeGridSixProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
144
+ declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, spacing, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureBadgeGridSix, type FeatureBadgeGridSixProps };
@@ -141,6 +141,6 @@ interface FeatureBadgeGridSixProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
144
+ declare function FeatureBadgeGridSix({ label, badgeSlot, title, features, featuresSlot, action, actionSlot, className, containerClassName, spacing, headerClassName, badgeClassName, titleClassName, gridClassName, cardClassName, actionContainerClassName, background, pattern, patternOpacity, patternClassName, }: FeatureBadgeGridSixProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureBadgeGridSix, type FeatureBadgeGridSixProps };
@@ -976,7 +976,8 @@ function FeatureBadgeGridSix({
976
976
  action,
977
977
  actionSlot,
978
978
  className,
979
- containerClassName,
979
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
980
+ spacing = "py-12 md:py-32",
980
981
  headerClassName,
981
982
  badgeClassName,
982
983
  titleClassName,
@@ -984,7 +985,6 @@ function FeatureBadgeGridSix({
984
985
  cardClassName,
985
986
  actionContainerClassName,
986
987
  background,
987
- spacing,
988
988
  pattern,
989
989
  patternOpacity,
990
990
  patternClassName
@@ -1016,12 +1016,54 @@ function FeatureBadgeGridSix({
1016
1016
  return /* @__PURE__ */ jsxs(
1017
1017
  "div",
1018
1018
  {
1019
- className: cn("flex gap-6 space-y-4 rounded-lg md:block", cardClassName, feature.className),
1019
+ className: cn(
1020
+ "flex gap-6 space-y-4 rounded-lg md:block",
1021
+ cardClassName,
1022
+ feature.className
1023
+ ),
1020
1024
  children: [
1021
- iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-full bg-primary text-primary-foreground md:size-12", children: iconContent }),
1025
+ iconContent && /* @__PURE__ */ jsx("span", { className: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-card text-card-foreground md:size-12 shadow-sm border", children: iconContent }),
1022
1026
  /* @__PURE__ */ jsxs("div", { children: [
1023
- feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx("h3", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading }) : /* @__PURE__ */ jsx("div", { className: cn("font-medium md:mb-2 md:text-xl", feature.headingClassName), children: feature.heading })),
1024
- feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }) : /* @__PURE__ */ jsx("div", { className: cn("text-sm md:text-base", getTextColor(background, "muted"), feature.descriptionClassName), children: feature.description }))
1027
+ feature.heading && (typeof feature.heading === "string" ? /* @__PURE__ */ jsx(
1028
+ "h3",
1029
+ {
1030
+ className: cn(
1031
+ "font-medium md:mb-2 md:text-xl",
1032
+ feature.headingClassName
1033
+ ),
1034
+ children: feature.heading
1035
+ }
1036
+ ) : /* @__PURE__ */ jsx(
1037
+ "div",
1038
+ {
1039
+ className: cn(
1040
+ "font-medium md:mb-2 md:text-xl",
1041
+ feature.headingClassName
1042
+ ),
1043
+ children: feature.heading
1044
+ }
1045
+ )),
1046
+ feature.description && (typeof feature.description === "string" ? /* @__PURE__ */ jsx(
1047
+ "p",
1048
+ {
1049
+ className: cn(
1050
+ "text-sm md:text-base",
1051
+ getTextColor(background, "muted"),
1052
+ feature.descriptionClassName
1053
+ ),
1054
+ children: feature.description
1055
+ }
1056
+ ) : /* @__PURE__ */ jsx(
1057
+ "div",
1058
+ {
1059
+ className: cn(
1060
+ "text-sm md:text-base",
1061
+ getTextColor(background, "muted"),
1062
+ feature.descriptionClassName
1063
+ ),
1064
+ children: feature.description
1065
+ }
1066
+ ))
1025
1067
  ] })
1026
1068
  ]
1027
1069
  },
@@ -1065,7 +1107,7 @@ function FeatureBadgeGridSix({
1065
1107
  }
1066
1108
  );
1067
1109
  }, [actionSlot, action]);
1068
- return /* @__PURE__ */ jsxs(
1110
+ return /* @__PURE__ */ jsx(
1069
1111
  Section,
1070
1112
  {
1071
1113
  background,
@@ -1075,14 +1117,47 @@ function FeatureBadgeGridSix({
1075
1117
  patternClassName,
1076
1118
  className,
1077
1119
  containerClassName,
1078
- children: [
1079
- (label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("mb-12 flex max-w-3xl flex-col gap-4", headerClassName), children: [
1120
+ children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1121
+ (label || badgeSlot || title) && /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-4", headerClassName), children: [
1080
1122
  badgeContent,
1081
- title && (typeof title === "string" ? /* @__PURE__ */ jsx("h2", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }) : /* @__PURE__ */ jsx("div", { className: cn("text-3xl font-medium md:text-4xl lg:text-5xl", titleClassName), children: title }))
1123
+ title && (typeof title === "string" ? /* @__PURE__ */ jsx(
1124
+ "h2",
1125
+ {
1126
+ className: cn(
1127
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1128
+ titleClassName
1129
+ ),
1130
+ children: title
1131
+ }
1132
+ ) : /* @__PURE__ */ jsx(
1133
+ "div",
1134
+ {
1135
+ className: cn(
1136
+ "text-2xl font-bold md:text-3xl lg:text-4xl",
1137
+ titleClassName
1138
+ ),
1139
+ children: title
1140
+ }
1141
+ ))
1082
1142
  ] }),
1083
- /* @__PURE__ */ jsx("div", { className: cn("grid gap-12 md:grid-cols-2", gridClassName), children: featuresContent }),
1084
- (action || actionSlot) && /* @__PURE__ */ jsx("div", { className: cn("mt-16 flex justify-center", actionContainerClassName), children: actionContent })
1085
- ]
1143
+ /* @__PURE__ */ jsx(
1144
+ "div",
1145
+ {
1146
+ className: cn(
1147
+ "grid gap-6 md:gap-12 grid-cols-1 md:grid-cols-2",
1148
+ gridClassName
1149
+ ),
1150
+ children: featuresContent
1151
+ }
1152
+ ),
1153
+ (action || actionSlot) && /* @__PURE__ */ jsx(
1154
+ "div",
1155
+ {
1156
+ className: cn("mt-8 flex justify-center", actionContainerClassName),
1157
+ children: actionContent
1158
+ }
1159
+ )
1160
+ ] })
1086
1161
  }
1087
1162
  );
1088
1163
  }
@@ -972,8 +972,8 @@ function FeatureCapabilitiesGrid({
972
972
  items,
973
973
  itemsSlot,
974
974
  className,
975
- containerClassName = "px-4 sm:px-4 md:px-6 lg:px-8",
976
- spacing = "py-6 md:py-32",
975
+ containerClassName = "mx-auto w-full max-w-screen-lg md:max-w-screen-4xl relative z-10 px-6 sm:px-2 md:px-2 lg:px-2",
976
+ spacing = "py-12 md:py-32",
977
977
  eyebrowClassName,
978
978
  headingClassName,
979
979
  gridClassName,
@@ -1000,7 +1000,7 @@ function FeatureCapabilitiesGrid({
1000
1000
  Card,
1001
1001
  {
1002
1002
  className: cn(
1003
- "group relative rounded-md overflow-visible border-border/10 bg-background/5 p-0 transition-colors duration-300 hover:border-border/20",
1003
+ "group relative rounded-md overflow-visible border-border/10 bg-card text-card-foreground p-0 transition-colors duration-300 hover:border-border/20",
1004
1004
  cardClassName,
1005
1005
  item.className
1006
1006
  ),
@@ -1018,7 +1018,7 @@ function FeatureCapabilitiesGrid({
1018
1018
  "div",
1019
1019
  {
1020
1020
  className: cn(
1021
- "flex h-10 w-10 items-center justify-center rounded-xl border border-border/15 bg-background/5",
1021
+ "flex h-10 w-10 items-center justify-center rounded-xl border ",
1022
1022
  item.iconClassName
1023
1023
  ),
1024
1024
  children: iconContent
@@ -1047,7 +1047,7 @@ function FeatureCapabilitiesGrid({
1047
1047
  "span",
1048
1048
  {
1049
1049
  className: cn(
1050
- "rounded-full border border-border/20 px-2 py-0.5 text-[10px] leading-none",
1050
+ "rounded-full border px-2 py-0.5 text-[10px] leading-none",
1051
1051
  item.badgeClassName
1052
1052
  ),
1053
1053
  children: item.badge
@@ -1092,7 +1092,6 @@ function FeatureCapabilitiesGrid({
1092
1092
  patternClassName,
1093
1093
  className,
1094
1094
  containerClassName,
1095
- containerMaxWidth: "lg",
1096
1095
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1097
1096
  eyebrow || heading ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-4 md:space-y-6", children: [
1098
1097
  eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-sm tracking-widest", eyebrowClassName), children: eyebrow }) : /* @__PURE__ */ jsxRuntime.jsx(
@@ -951,8 +951,8 @@ function FeatureCapabilitiesGrid({
951
951
  items,
952
952
  itemsSlot,
953
953
  className,
954
- containerClassName = "px-4 sm:px-4 md:px-6 lg:px-8",
955
- spacing = "py-6 md:py-32",
954
+ containerClassName = "mx-auto w-full max-w-screen-lg md:max-w-screen-4xl relative z-10 px-6 sm:px-2 md:px-2 lg:px-2",
955
+ spacing = "py-12 md:py-32",
956
956
  eyebrowClassName,
957
957
  headingClassName,
958
958
  gridClassName,
@@ -979,7 +979,7 @@ function FeatureCapabilitiesGrid({
979
979
  Card,
980
980
  {
981
981
  className: cn(
982
- "group relative rounded-md overflow-visible border-border/10 bg-background/5 p-0 transition-colors duration-300 hover:border-border/20",
982
+ "group relative rounded-md overflow-visible border-border/10 bg-card text-card-foreground p-0 transition-colors duration-300 hover:border-border/20",
983
983
  cardClassName,
984
984
  item.className
985
985
  ),
@@ -997,7 +997,7 @@ function FeatureCapabilitiesGrid({
997
997
  "div",
998
998
  {
999
999
  className: cn(
1000
- "flex h-10 w-10 items-center justify-center rounded-xl border border-border/15 bg-background/5",
1000
+ "flex h-10 w-10 items-center justify-center rounded-xl border ",
1001
1001
  item.iconClassName
1002
1002
  ),
1003
1003
  children: iconContent
@@ -1026,7 +1026,7 @@ function FeatureCapabilitiesGrid({
1026
1026
  "span",
1027
1027
  {
1028
1028
  className: cn(
1029
- "rounded-full border border-border/20 px-2 py-0.5 text-[10px] leading-none",
1029
+ "rounded-full border px-2 py-0.5 text-[10px] leading-none",
1030
1030
  item.badgeClassName
1031
1031
  ),
1032
1032
  children: item.badge
@@ -1071,7 +1071,6 @@ function FeatureCapabilitiesGrid({
1071
1071
  patternClassName,
1072
1072
  className,
1073
1073
  containerClassName,
1074
- containerMaxWidth: "lg",
1075
1074
  children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-6 md:space-y-16", children: [
1076
1075
  eyebrow || heading ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-4 md:space-y-6", children: [
1077
1076
  eyebrow && (typeof eyebrow === "string" ? /* @__PURE__ */ jsx("p", { className: cn("text-sm tracking-widest", eyebrowClassName), children: eyebrow }) : /* @__PURE__ */ jsx(
@@ -487,7 +487,6 @@ function FeatureCategoryImageCards({
487
487
  features,
488
488
  featuresSlot,
489
489
  className,
490
- containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
491
490
  headerClassName,
492
491
  badgeClassName,
493
492
  titleClassName,
@@ -496,6 +495,7 @@ function FeatureCategoryImageCards({
496
495
  cardClassName,
497
496
  optixFlowConfig,
498
497
  background,
498
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
499
499
  spacing = "py-12 md:py-32",
500
500
  pattern,
501
501
  patternOpacity,
@@ -141,6 +141,6 @@ interface FeatureCategoryImageCardsProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
144
+ declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureCategoryImageCards, type FeatureCategoryImageCardsProps };
@@ -141,6 +141,6 @@ interface FeatureCategoryImageCardsProps {
141
141
  * />
142
142
  * ```
143
143
  */
144
- declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, containerClassName, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
144
+ declare function FeatureCategoryImageCards({ badge, title, description, features, featuresSlot, className, headerClassName, badgeClassName, titleClassName, descriptionClassName, gridClassName, cardClassName, optixFlowConfig, background, containerClassName, spacing, pattern, patternOpacity, patternClassName, }: FeatureCategoryImageCardsProps): React.JSX.Element;
145
145
 
146
146
  export { FeatureCategoryImageCards, type FeatureCategoryImageCardsProps };
@@ -481,7 +481,6 @@ function FeatureCategoryImageCards({
481
481
  features,
482
482
  featuresSlot,
483
483
  className,
484
- containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
485
484
  headerClassName,
486
485
  badgeClassName,
487
486
  titleClassName,
@@ -490,6 +489,7 @@ function FeatureCategoryImageCards({
490
489
  cardClassName,
491
490
  optixFlowConfig,
492
491
  background,
492
+ containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
493
493
  spacing = "py-12 md:py-32",
494
494
  pattern,
495
495
  patternOpacity,
@@ -1036,7 +1036,7 @@ function FeatureChecklistImage({
1036
1036
  patternOpacity,
1037
1037
  patternClassName,
1038
1038
  className,
1039
- containerClassName: cn("max-w-6xl", containerClassName),
1039
+ containerClassName,
1040
1040
  children: /* @__PURE__ */ jsxRuntime.jsxs(
1041
1041
  "div",
1042
1042
  {
@@ -1050,7 +1050,7 @@ function FeatureChecklistImage({
1050
1050
  "div",
1051
1051
  {
1052
1052
  className: cn(
1053
- "px-4 md:px-6 lg:px-10 py-4 md:py-4 lg:py-0",
1053
+ "px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
1054
1054
  contentClassName
1055
1055
  ),
1056
1056
  children: [
@@ -1073,12 +1073,12 @@ function FeatureChecklistImage({
1073
1073
  children: title
1074
1074
  }
1075
1075
  )),
1076
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description })),
1076
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("relative", descriptionClassName), children: description })),
1077
1077
  actionsContent && /* @__PURE__ */ jsxRuntime.jsx(
1078
1078
  "div",
1079
1079
  {
1080
1080
  className: cn(
1081
- "flex flex-wrap items-center gap-4 md:gap-2",
1081
+ "flex flex-wrap items-center gap-4",
1082
1082
  actionsClassName
1083
1083
  ),
1084
1084
  children: actionsContent
@@ -1088,7 +1088,7 @@ function FeatureChecklistImage({
1088
1088
  "ul",
1089
1089
  {
1090
1090
  className: cn(
1091
- "mt-10 flex-wrap items-center gap-6 space-y-6 md:flex md:space-y-0",
1091
+ "flex-wrap items-center space-y-2 md:flex",
1092
1092
  checklistClassName
1093
1093
  ),
1094
1094
  children: checklistContent
@@ -1015,7 +1015,7 @@ function FeatureChecklistImage({
1015
1015
  patternOpacity,
1016
1016
  patternClassName,
1017
1017
  className,
1018
- containerClassName: cn("max-w-6xl", containerClassName),
1018
+ containerClassName,
1019
1019
  children: /* @__PURE__ */ jsxs(
1020
1020
  "div",
1021
1021
  {
@@ -1029,7 +1029,7 @@ function FeatureChecklistImage({
1029
1029
  "div",
1030
1030
  {
1031
1031
  className: cn(
1032
- "px-4 md:px-6 lg:px-10 py-4 md:py-4 lg:py-0",
1032
+ "px-0 md:px-6 lg:px-10 py-4 md:py-0 flex flex-col gap-6 md:gap-10",
1033
1033
  contentClassName
1034
1034
  ),
1035
1035
  children: [
@@ -1052,12 +1052,12 @@ function FeatureChecklistImage({
1052
1052
  children: title
1053
1053
  }
1054
1054
  )),
1055
- description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("mt-1 md:mt-6", descriptionClassName), children: description })),
1055
+ description && (typeof description === "string" ? /* @__PURE__ */ jsx("p", { className: cn("relative", descriptionClassName), children: description }) : /* @__PURE__ */ jsx("div", { className: cn("relative", descriptionClassName), children: description })),
1056
1056
  actionsContent && /* @__PURE__ */ jsx(
1057
1057
  "div",
1058
1058
  {
1059
1059
  className: cn(
1060
- "flex flex-wrap items-center gap-4 md:gap-2",
1060
+ "flex flex-wrap items-center gap-4",
1061
1061
  actionsClassName
1062
1062
  ),
1063
1063
  children: actionsContent
@@ -1067,7 +1067,7 @@ function FeatureChecklistImage({
1067
1067
  "ul",
1068
1068
  {
1069
1069
  className: cn(
1070
- "mt-10 flex-wrap items-center gap-6 space-y-6 md:flex md:space-y-0",
1070
+ "flex-wrap items-center space-y-2 md:flex",
1071
1071
  checklistClassName
1072
1072
  ),
1073
1073
  children: checklistContent