@opensite/ui 2.3.1 → 2.3.2

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.
@@ -491,7 +491,7 @@ var DEFAULT_FORM_FIELDS = [
491
491
  function ContactPhotography({
492
492
  heading,
493
493
  description,
494
- containerClassName = "mx-auto w-full max-w-full relative z-10 px-0",
494
+ containerClassName = "px-0 sm:px-0 md:px-0 lg:px-0 mx-0 w-full max-w-full relative z-10",
495
495
  className,
496
496
  headingClassName,
497
497
  descriptionClassName,
@@ -470,7 +470,7 @@ var DEFAULT_FORM_FIELDS = [
470
470
  function ContactPhotography({
471
471
  heading,
472
472
  description,
473
- containerClassName = "mx-auto w-full max-w-full relative z-10 px-0",
473
+ containerClassName = "px-0 sm:px-0 md:px-0 lg:px-0 mx-0 w-full max-w-full relative z-10",
474
474
  className,
475
475
  headingClassName,
476
476
  descriptionClassName,
@@ -1008,20 +1008,30 @@ function HeroEventRegistration({
1008
1008
  const renderLocation = React3.useMemo(() => {
1009
1009
  if (locationSlot) return locationSlot;
1010
1010
  if (!locationLabel && !locationSublabel) return null;
1011
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
1011
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-2 md:p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
1012
1012
  /* @__PURE__ */ jsxRuntime.jsx(
1013
1013
  "div",
1014
1014
  {
1015
1015
  className: cn(
1016
- "flex h-12 w-12 items-center justify-center rounded-full text-card-foreground"
1016
+ "flex items-center justify-center shrink-0",
1017
+ "size-12 rounded-xl bg-primary text-primary-foreground"
1017
1018
  ),
1018
1019
  children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size: 24 })
1019
1020
  }
1020
1021
  ),
1021
- /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
1022
- locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-semibold text-card-foreground", children: locationLabel }) : locationLabel),
1023
- locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm text-card-foreground"), children: locationSublabel }) : locationSublabel)
1024
- ] })
1022
+ /* @__PURE__ */ jsxRuntime.jsxs(
1023
+ "div",
1024
+ {
1025
+ className: cn(
1026
+ "flex flex-col items-start justify-center",
1027
+ "text-card-foreground gap-0 pr-0 md:pr-2"
1028
+ ),
1029
+ children: [
1030
+ locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-semibold", children: locationLabel }) : locationLabel),
1031
+ locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-xs"), children: locationSublabel }) : locationSublabel)
1032
+ ]
1033
+ }
1034
+ )
1025
1035
  ] }) });
1026
1036
  }, [locationSlot, locationLabel, locationSublabel]);
1027
1037
  const renderImage = React3.useMemo(() => {
@@ -1064,7 +1074,7 @@ function HeroEventRegistration({
1064
1074
  {
1065
1075
  src: logo.src,
1066
1076
  alt: logo.alt,
1067
- className: "mr-auto h-12 md:h-16",
1077
+ className: "w-auto max-w-full h-12 md:h-14 object-contain my-4",
1068
1078
  optixFlowConfig
1069
1079
  }
1070
1080
  ),
@@ -987,20 +987,30 @@ function HeroEventRegistration({
987
987
  const renderLocation = useMemo(() => {
988
988
  if (locationSlot) return locationSlot;
989
989
  if (!locationLabel && !locationSublabel) return null;
990
- return /* @__PURE__ */ jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
990
+ return /* @__PURE__ */ jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-2 md:p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
991
991
  /* @__PURE__ */ jsx(
992
992
  "div",
993
993
  {
994
994
  className: cn(
995
- "flex h-12 w-12 items-center justify-center rounded-full text-card-foreground"
995
+ "flex items-center justify-center shrink-0",
996
+ "size-12 rounded-xl bg-primary text-primary-foreground"
996
997
  ),
997
998
  children: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size: 24 })
998
999
  }
999
1000
  ),
1000
- /* @__PURE__ */ jsxs("div", { children: [
1001
- locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsx("div", { className: "font-semibold text-card-foreground", children: locationLabel }) : locationLabel),
1002
- locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsx("div", { className: cn("text-sm text-card-foreground"), children: locationSublabel }) : locationSublabel)
1003
- ] })
1001
+ /* @__PURE__ */ jsxs(
1002
+ "div",
1003
+ {
1004
+ className: cn(
1005
+ "flex flex-col items-start justify-center",
1006
+ "text-card-foreground gap-0 pr-0 md:pr-2"
1007
+ ),
1008
+ children: [
1009
+ locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsx("div", { className: "font-semibold", children: locationLabel }) : locationLabel),
1010
+ locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsx("div", { className: cn("text-xs"), children: locationSublabel }) : locationSublabel)
1011
+ ]
1012
+ }
1013
+ )
1004
1014
  ] }) });
1005
1015
  }, [locationSlot, locationLabel, locationSublabel]);
1006
1016
  const renderImage = useMemo(() => {
@@ -1043,7 +1053,7 @@ function HeroEventRegistration({
1043
1053
  {
1044
1054
  src: logo.src,
1045
1055
  alt: logo.alt,
1046
- className: "mr-auto h-12 md:h-16",
1056
+ className: "w-auto max-w-full h-12 md:h-14 object-contain my-4",
1047
1057
  optixFlowConfig
1048
1058
  }
1049
1059
  ),
@@ -972,9 +972,9 @@ function HeroVideoBackgroundDark({
972
972
  "div",
973
973
  {
974
974
  className: cn(
975
- "relative z-10 mx-auto flex size-full max-w-3xl",
976
- "flex-col justify-center gap-4 md:gap-6 items-center",
977
- "text-center px-4 md:px-6",
975
+ "relative z-10 mx-auto flex size-full",
976
+ "md:max-w-3xl lg:max-w-4xl flex-col justify-center",
977
+ "gap-4 md:gap-6 items-center text-center px-4 md:px-6",
978
978
  contentClassName
979
979
  ),
980
980
  children: [
@@ -983,7 +983,8 @@ function HeroVideoBackgroundDark({
983
983
  "h1",
984
984
  {
985
985
  className: cn(
986
- "text-4xl font-bold md:text-6xl lg:text-7xl text-balance text-white text-shadow-2xl",
986
+ "font-bold text-5xl md:text-6xl lg:text-8xl",
987
+ "text-pretty text-white text-shadow-2xl",
987
988
  headingClassName
988
989
  ),
989
990
  children: heading
@@ -951,9 +951,9 @@ function HeroVideoBackgroundDark({
951
951
  "div",
952
952
  {
953
953
  className: cn(
954
- "relative z-10 mx-auto flex size-full max-w-3xl",
955
- "flex-col justify-center gap-4 md:gap-6 items-center",
956
- "text-center px-4 md:px-6",
954
+ "relative z-10 mx-auto flex size-full",
955
+ "md:max-w-3xl lg:max-w-4xl flex-col justify-center",
956
+ "gap-4 md:gap-6 items-center text-center px-4 md:px-6",
957
957
  contentClassName
958
958
  ),
959
959
  children: [
@@ -962,7 +962,8 @@ function HeroVideoBackgroundDark({
962
962
  "h1",
963
963
  {
964
964
  className: cn(
965
- "text-4xl font-bold md:text-6xl lg:text-7xl text-balance text-white text-shadow-2xl",
965
+ "font-bold text-5xl md:text-6xl lg:text-8xl",
966
+ "text-pretty text-white text-shadow-2xl",
966
967
  headingClassName
967
968
  ),
968
969
  children: heading
@@ -1019,7 +1019,8 @@ function LinkPageGridCards({
1019
1019
  "group flex flex-col items-center gap-2 rounded-xl",
1020
1020
  "hover:scale-[1.03] active:scale-[0.97]",
1021
1021
  "transition-all duration-200 p-4",
1022
- "border border-border bg-card shadow-sm hover:shadow-md",
1022
+ "bg-card text-card-foreground shadow-sm hover:shadow-md",
1023
+ "border border-border",
1023
1024
  cardClassName,
1024
1025
  linkClassName
1025
1026
  ),
@@ -998,7 +998,8 @@ function LinkPageGridCards({
998
998
  "group flex flex-col items-center gap-2 rounded-xl",
999
999
  "hover:scale-[1.03] active:scale-[0.97]",
1000
1000
  "transition-all duration-200 p-4",
1001
- "border border-border bg-card shadow-sm hover:shadow-md",
1001
+ "bg-card text-card-foreground shadow-sm hover:shadow-md",
1002
+ "border border-border",
1002
1003
  cardClassName,
1003
1004
  linkClassName
1004
1005
  ),
@@ -1328,7 +1328,7 @@ var NavbarImagePreview = ({
1328
1328
  "div",
1329
1329
  {
1330
1330
  className: cn(
1331
- "flex items-center justify-between gap-3.5 py-5",
1331
+ "relative flex items-center justify-between gap-3.5 py-5",
1332
1332
  navClassName
1333
1333
  ),
1334
1334
  children: [
@@ -1345,7 +1345,7 @@ var NavbarImagePreview = ({
1345
1345
  NavigationMenu,
1346
1346
  {
1347
1347
  className: cn(
1348
- "hidden lg:flex [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
1348
+ "hidden lg:flex absolute left-1/2 -translate-x-1/2 [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
1349
1349
  navigationMenuClassName
1350
1350
  ),
1351
1351
  children: renderNavigation
@@ -1305,7 +1305,7 @@ var NavbarImagePreview = ({
1305
1305
  "div",
1306
1306
  {
1307
1307
  className: cn(
1308
- "flex items-center justify-between gap-3.5 py-5",
1308
+ "relative flex items-center justify-between gap-3.5 py-5",
1309
1309
  navClassName
1310
1310
  ),
1311
1311
  children: [
@@ -1322,7 +1322,7 @@ var NavbarImagePreview = ({
1322
1322
  NavigationMenu,
1323
1323
  {
1324
1324
  className: cn(
1325
- "hidden lg:flex [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
1325
+ "hidden lg:flex absolute left-1/2 -translate-x-1/2 [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
1326
1326
  navigationMenuClassName
1327
1327
  ),
1328
1328
  children: renderNavigation
package/dist/registry.cjs CHANGED
@@ -17028,7 +17028,7 @@ var DEFAULT_FORM_FIELDS25 = [
17028
17028
  function ContactPhotography({
17029
17029
  heading,
17030
17030
  description,
17031
- containerClassName = "mx-auto w-full max-w-full relative z-10 px-0",
17031
+ containerClassName = "px-0 sm:px-0 md:px-0 lg:px-0 mx-0 w-full max-w-full relative z-10",
17032
17032
  className,
17033
17033
  headingClassName,
17034
17034
  descriptionClassName,
@@ -50181,9 +50181,9 @@ function HeroVideoBackgroundDark({
50181
50181
  "div",
50182
50182
  {
50183
50183
  className: cn(
50184
- "relative z-10 mx-auto flex size-full max-w-3xl",
50185
- "flex-col justify-center gap-4 md:gap-6 items-center",
50186
- "text-center px-4 md:px-6",
50184
+ "relative z-10 mx-auto flex size-full",
50185
+ "md:max-w-3xl lg:max-w-4xl flex-col justify-center",
50186
+ "gap-4 md:gap-6 items-center text-center px-4 md:px-6",
50187
50187
  contentClassName
50188
50188
  ),
50189
50189
  children: [
@@ -50192,7 +50192,8 @@ function HeroVideoBackgroundDark({
50192
50192
  "h1",
50193
50193
  {
50194
50194
  className: cn(
50195
- "text-4xl font-bold md:text-6xl lg:text-7xl text-balance text-white text-shadow-2xl",
50195
+ "font-bold text-5xl md:text-6xl lg:text-8xl",
50196
+ "text-pretty text-white text-shadow-2xl",
50196
50197
  headingClassName
50197
50198
  ),
50198
50199
  children: heading
@@ -58188,20 +58189,30 @@ function HeroEventRegistration({
58188
58189
  const renderLocation = React26.useMemo(() => {
58189
58190
  if (locationSlot) return locationSlot;
58190
58191
  if (!locationLabel && !locationSublabel) return null;
58191
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
58192
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-2 md:p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
58192
58193
  /* @__PURE__ */ jsxRuntime.jsx(
58193
58194
  "div",
58194
58195
  {
58195
58196
  className: cn(
58196
- "flex h-12 w-12 items-center justify-center rounded-full text-card-foreground"
58197
+ "flex items-center justify-center shrink-0",
58198
+ "size-12 rounded-xl bg-primary text-primary-foreground"
58197
58199
  ),
58198
58200
  children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size: 24 })
58199
58201
  }
58200
58202
  ),
58201
- /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
58202
- locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-semibold text-card-foreground", children: locationLabel }) : locationLabel),
58203
- locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-sm text-card-foreground"), children: locationSublabel }) : locationSublabel)
58204
- ] })
58203
+ /* @__PURE__ */ jsxRuntime.jsxs(
58204
+ "div",
58205
+ {
58206
+ className: cn(
58207
+ "flex flex-col items-start justify-center",
58208
+ "text-card-foreground gap-0 pr-0 md:pr-2"
58209
+ ),
58210
+ children: [
58211
+ locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-semibold", children: locationLabel }) : locationLabel),
58212
+ locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-xs"), children: locationSublabel }) : locationSublabel)
58213
+ ]
58214
+ }
58215
+ )
58205
58216
  ] }) });
58206
58217
  }, [locationSlot, locationLabel, locationSublabel]);
58207
58218
  const renderImage = React26.useMemo(() => {
@@ -58244,7 +58255,7 @@ function HeroEventRegistration({
58244
58255
  {
58245
58256
  src: logo.src,
58246
58257
  alt: logo.alt,
58247
- className: "mr-auto h-12 md:h-16",
58258
+ className: "w-auto max-w-full h-12 md:h-14 object-contain my-4",
58248
58259
  optixFlowConfig
58249
58260
  }
58250
58261
  ),
@@ -62830,7 +62841,7 @@ var NavbarImagePreview = ({
62830
62841
  "div",
62831
62842
  {
62832
62843
  className: cn(
62833
- "flex items-center justify-between gap-3.5 py-5",
62844
+ "relative flex items-center justify-between gap-3.5 py-5",
62834
62845
  navClassName
62835
62846
  ),
62836
62847
  children: [
@@ -62847,7 +62858,7 @@ var NavbarImagePreview = ({
62847
62858
  NavigationMenu,
62848
62859
  {
62849
62860
  className: cn(
62850
- "hidden lg:flex [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
62861
+ "hidden lg:flex absolute left-1/2 -translate-x-1/2 [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
62851
62862
  navigationMenuClassName
62852
62863
  ),
62853
62864
  children: renderNavigation
@@ -99422,7 +99433,8 @@ function LinkPageGridCards({
99422
99433
  "group flex flex-col items-center gap-2 rounded-xl",
99423
99434
  "hover:scale-[1.03] active:scale-[0.97]",
99424
99435
  "transition-all duration-200 p-4",
99425
- "border border-border bg-card shadow-sm hover:shadow-md",
99436
+ "bg-card text-card-foreground shadow-sm hover:shadow-md",
99437
+ "border border-border",
99426
99438
  cardClassName,
99427
99439
  linkClassName
99428
99440
  ),
package/dist/registry.js CHANGED
@@ -16988,7 +16988,7 @@ var DEFAULT_FORM_FIELDS25 = [
16988
16988
  function ContactPhotography({
16989
16989
  heading,
16990
16990
  description,
16991
- containerClassName = "mx-auto w-full max-w-full relative z-10 px-0",
16991
+ containerClassName = "px-0 sm:px-0 md:px-0 lg:px-0 mx-0 w-full max-w-full relative z-10",
16992
16992
  className,
16993
16993
  headingClassName,
16994
16994
  descriptionClassName,
@@ -50141,9 +50141,9 @@ function HeroVideoBackgroundDark({
50141
50141
  "div",
50142
50142
  {
50143
50143
  className: cn(
50144
- "relative z-10 mx-auto flex size-full max-w-3xl",
50145
- "flex-col justify-center gap-4 md:gap-6 items-center",
50146
- "text-center px-4 md:px-6",
50144
+ "relative z-10 mx-auto flex size-full",
50145
+ "md:max-w-3xl lg:max-w-4xl flex-col justify-center",
50146
+ "gap-4 md:gap-6 items-center text-center px-4 md:px-6",
50147
50147
  contentClassName
50148
50148
  ),
50149
50149
  children: [
@@ -50152,7 +50152,8 @@ function HeroVideoBackgroundDark({
50152
50152
  "h1",
50153
50153
  {
50154
50154
  className: cn(
50155
- "text-4xl font-bold md:text-6xl lg:text-7xl text-balance text-white text-shadow-2xl",
50155
+ "font-bold text-5xl md:text-6xl lg:text-8xl",
50156
+ "text-pretty text-white text-shadow-2xl",
50156
50157
  headingClassName
50157
50158
  ),
50158
50159
  children: heading
@@ -58148,20 +58149,30 @@ function HeroEventRegistration({
58148
58149
  const renderLocation = useMemo(() => {
58149
58150
  if (locationSlot) return locationSlot;
58150
58151
  if (!locationLabel && !locationSublabel) return null;
58151
- return /* @__PURE__ */ jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
58152
+ return /* @__PURE__ */ jsx("div", { className: "absolute -bottom-4 -left-4 rounded-xl bg-card text-card-foreground p-2 md:p-4 shadow-lg ring-4 ring-primary", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
58152
58153
  /* @__PURE__ */ jsx(
58153
58154
  "div",
58154
58155
  {
58155
58156
  className: cn(
58156
- "flex h-12 w-12 items-center justify-center rounded-full text-card-foreground"
58157
+ "flex items-center justify-center shrink-0",
58158
+ "size-12 rounded-xl bg-primary text-primary-foreground"
58157
58159
  ),
58158
58160
  children: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size: 24 })
58159
58161
  }
58160
58162
  ),
58161
- /* @__PURE__ */ jsxs("div", { children: [
58162
- locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsx("div", { className: "font-semibold text-card-foreground", children: locationLabel }) : locationLabel),
58163
- locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsx("div", { className: cn("text-sm text-card-foreground"), children: locationSublabel }) : locationSublabel)
58164
- ] })
58163
+ /* @__PURE__ */ jsxs(
58164
+ "div",
58165
+ {
58166
+ className: cn(
58167
+ "flex flex-col items-start justify-center",
58168
+ "text-card-foreground gap-0 pr-0 md:pr-2"
58169
+ ),
58170
+ children: [
58171
+ locationLabel && (typeof locationLabel === "string" ? /* @__PURE__ */ jsx("div", { className: "font-semibold", children: locationLabel }) : locationLabel),
58172
+ locationSublabel && (typeof locationSublabel === "string" ? /* @__PURE__ */ jsx("div", { className: cn("text-xs"), children: locationSublabel }) : locationSublabel)
58173
+ ]
58174
+ }
58175
+ )
58165
58176
  ] }) });
58166
58177
  }, [locationSlot, locationLabel, locationSublabel]);
58167
58178
  const renderImage = useMemo(() => {
@@ -58204,7 +58215,7 @@ function HeroEventRegistration({
58204
58215
  {
58205
58216
  src: logo.src,
58206
58217
  alt: logo.alt,
58207
- className: "mr-auto h-12 md:h-16",
58218
+ className: "w-auto max-w-full h-12 md:h-14 object-contain my-4",
58208
58219
  optixFlowConfig
58209
58220
  }
58210
58221
  ),
@@ -62790,7 +62801,7 @@ var NavbarImagePreview = ({
62790
62801
  "div",
62791
62802
  {
62792
62803
  className: cn(
62793
- "flex items-center justify-between gap-3.5 py-5",
62804
+ "relative flex items-center justify-between gap-3.5 py-5",
62794
62805
  navClassName
62795
62806
  ),
62796
62807
  children: [
@@ -62807,7 +62818,7 @@ var NavbarImagePreview = ({
62807
62818
  NavigationMenu,
62808
62819
  {
62809
62820
  className: cn(
62810
- "hidden lg:flex [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
62821
+ "hidden lg:flex absolute left-1/2 -translate-x-1/2 [&>div:nth-child(2)]:left-1/2 [&>div:nth-child(2)]:-translate-x-1/2",
62811
62822
  navigationMenuClassName
62812
62823
  ),
62813
62824
  children: renderNavigation
@@ -99382,7 +99393,8 @@ function LinkPageGridCards({
99382
99393
  "group flex flex-col items-center gap-2 rounded-xl",
99383
99394
  "hover:scale-[1.03] active:scale-[0.97]",
99384
99395
  "transition-all duration-200 p-4",
99385
- "border border-border bg-card shadow-sm hover:shadow-md",
99396
+ "bg-card text-card-foreground shadow-sm hover:shadow-md",
99397
+ "border border-border",
99386
99398
  cardClassName,
99387
99399
  linkClassName
99388
99400
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensite/ui",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Foundational UI component library for OpenSite Semantic Site Builder with tree-shakable exports and abstract styling",
5
5
  "keywords": [
6
6
  "react",