@opensite/ui 1.2.0 → 1.2.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.
package/dist/registry.cjs CHANGED
@@ -30182,72 +30182,56 @@ function ExpandableCaseStudyCards({
30182
30182
  "a",
30183
30183
  {
30184
30184
  href: item.href,
30185
- className: "relative block h-full w-full overflow-hidden rounded-xl bg-primary text-primary-foreground dark:bg-card",
30185
+ className: "relative block h-full w-full overflow-hidden rounded-xl",
30186
30186
  children: [
30187
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: 'absolute -inset-[50%] hidden h-[200%] w-[200%] md:block lg:group-data-[state="closed"]:blur-sm', children: [
30188
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute top-[calc(25%+40px)] aspect-square h-[calc(50%+40px)] max-lg:right-[calc(50%+40px)] lg:right-[50%]", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-full w-full overflow-clip rounded-xl", children: /* @__PURE__ */ jsxRuntime.jsx(
30189
- img.Img,
30190
- {
30191
- src: item.image,
30192
- alt: typeof item.title === "string" ? item.title : item.imageAlt || "Case study image",
30193
- className: cn(
30194
- "h-full w-full object-cover object-center",
30195
- imageClassName
30196
- ),
30197
- loading: "lazy",
30198
- optixFlowConfig
30199
- }
30200
- ) }) }),
30201
- /* @__PURE__ */ jsxRuntime.jsx(
30187
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: 'absolute inset-0 lg:group-data-[state="closed"]:blur-sm lg:transition-[filter] lg:duration-500', children: /* @__PURE__ */ jsxRuntime.jsx(
30188
+ img.Img,
30189
+ {
30190
+ src: item.image,
30191
+ alt: typeof item.title === "string" ? item.title : item.imageAlt || "Case study image",
30192
+ className: cn(
30193
+ "h-full w-full object-cover object-center",
30194
+ imageClassName
30195
+ ),
30196
+ loading: "lazy",
30197
+ optixFlowConfig
30198
+ }
30199
+ ) }),
30200
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-x-0 bottom-0 h-[70%] bg-linear-to-t from-black/90 from-30% to-transparent" }),
30201
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: 'absolute inset-0 flex flex-col justify-end p-4 pb-5 transition-opacity delay-200 duration-500 lg:group-data-[state="closed"]:opacity-0', children: [
30202
+ item.badges && item.badges.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(
30202
30203
  "div",
30203
30204
  {
30204
30205
  className: cn(
30205
- "absolute top-[50%] left-[50%] flex size-16 -translate-x-1/2 -translate-y-1/2 items-center justify-center rounded-full max-lg:hidden",
30206
- getNestedCardBg(background, "accent"),
30207
- getNestedCardTextColor(background)
30206
+ "mb-3 flex flex-wrap items-center gap-2",
30207
+ badgesClassName
30208
30208
  ),
30209
- children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/plus", size: 32 })
30209
+ children: item.badges.map((badge, idx) => /* @__PURE__ */ jsxRuntime.jsx(Badge, { variant: "secondary", className: badgeClassName, children: badge }, idx))
30210
30210
  }
30211
30211
  ),
30212
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-x-0 bottom-0 hidden h-[50%] bg-linear-to-t from-primary from-50% to-transparent lg:block" })
30213
- ] }),
30214
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex flex-col justify-between gap-4 md:absolute md:inset-0 md:max-lg:inset-x-[50%] md:max-lg:w-[50%]", children: [
30215
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: 'flex flex-col gap-3 p-4 pt-6 transition-all delay-200 duration-500 lg:group-data-[state="closed"]:opacity-0', children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between gap-2", children: [
30216
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", children: [
30212
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-end justify-between gap-3", children: [
30213
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-1.5", children: [
30217
30214
  item.logo && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-1", children: /* @__PURE__ */ jsxRuntime.jsx(
30218
30215
  img.Img,
30219
30216
  {
30220
30217
  src: item.logo,
30221
30218
  alt: item.logoAlt || item.company || "Logo",
30222
- className: cn("h-6 max-w-[120px] object-contain object-left lg:h-8 lg:max-w-[150px]", logoClassName),
30219
+ className: cn("h-6 max-w-[120px] object-contain object-left invert lg:h-8 lg:max-w-[150px]", logoClassName),
30223
30220
  loading: "lazy",
30224
30221
  optixFlowConfig
30225
30222
  }
30226
30223
  ) }),
30227
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-base font-medium lg:text-lg", children: item.title }),
30228
- item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm text-primary-foreground/70", children: item.description })
30224
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-base font-medium text-white lg:text-lg", children: item.title }),
30225
+ item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm text-white/80", children: item.description })
30229
30226
  ] }),
30230
30227
  /* @__PURE__ */ jsxRuntime.jsx(
30231
30228
  "div",
30232
30229
  {
30233
- className: cn(
30234
- "flex size-8 shrink-0 items-center justify-center rounded-full text-foreground transition-transform group-hover:translate-x-1 group-hover:-translate-y-1 lg:size-10",
30235
- getNestedCardBg(background, "card")
30236
- ),
30230
+ className: "flex size-8 shrink-0 items-center justify-center rounded-full bg-white/20 text-white backdrop-blur-sm transition-transform group-hover:translate-x-1 group-hover:-translate-y-1 lg:size-10",
30237
30231
  children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/arrow-up-right", size: 20 })
30238
30232
  }
30239
30233
  )
30240
- ] }) }),
30241
- /* @__PURE__ */ jsxRuntime.jsx(
30242
- "div",
30243
- {
30244
- className: cn(
30245
- 'flex h-20 items-center gap-2 px-4 pb-4 transition-opacity delay-200 duration-500 lg:group-data-[state="closed"]:opacity-0',
30246
- badgesClassName
30247
- ),
30248
- children: item.badges?.map((badge, idx) => /* @__PURE__ */ jsxRuntime.jsx(Badge, { variant: "secondary", className: badgeClassName, children: badge }, idx))
30249
- }
30250
- )
30234
+ ] })
30251
30235
  ] })
30252
30236
  ]
30253
30237
  }
@@ -30408,7 +30392,7 @@ function CarouselBadgeCards({
30408
30392
  "div",
30409
30393
  {
30410
30394
  className: cn(
30411
- "mb-8 flex items-end justify-between md:mb-14 lg:mb-16",
30395
+ "mb-8 flex items-end justify-between md:mb-14 lg:mb-16 px-6 md:px-0",
30412
30396
  headerClassName
30413
30397
  ),
30414
30398
  children: [
@@ -30672,7 +30656,7 @@ function CarouselGradientOverlay({
30672
30656
  ]
30673
30657
  }
30674
30658
  ),
30675
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "w-full -mx-4 sm:-mx-6 lg:-mx-8", children: [
30659
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "w-full -mx-4", children: [
30676
30660
  /* @__PURE__ */ jsxRuntime.jsx(
30677
30661
  Carousel,
30678
30662
  {
@@ -30982,13 +30966,13 @@ function AutoScrollCarousel({
30982
30966
  className: actionClass,
30983
30967
  ...pressableProps
30984
30968
  } = action;
30985
- return /* @__PURE__ */ jsxRuntime.jsx(
30969
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex text-left", children: /* @__PURE__ */ jsxRuntime.jsx(
30986
30970
  Pressable,
30987
30971
  {
30988
30972
  variant: "link",
30989
30973
  asButton: true,
30990
30974
  className: cn(
30991
- "font-medium flex items-center",
30975
+ "font-medium flex items-center text-xl",
30992
30976
  actionClass,
30993
30977
  actionClassName
30994
30978
  ),
@@ -31006,7 +30990,7 @@ function AutoScrollCarousel({
31006
30990
  )
31007
30991
  ] })
31008
30992
  }
31009
- );
30993
+ ) });
31010
30994
  }, [actionSlot, action, actionClassName]);
31011
30995
  const imagesContent = React52.useMemo(() => {
31012
30996
  if (imagesSlot) return imagesSlot;
@@ -31046,7 +31030,7 @@ function AutoScrollCarousel({
31046
31030
  ),
31047
31031
  children: [
31048
31032
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-8 md:gap-12", children: heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
31049
- "h1",
31033
+ "h2",
31050
31034
  {
31051
31035
  className: cn(
31052
31036
  "text-3xl font-bold md:text-4xl",
@@ -31372,11 +31356,11 @@ function CarouselIconTabs({
31372
31356
  "div",
31373
31357
  {
31374
31358
  className: cn(
31375
- "mb-20 flex flex-col items-center justify-center gap-8",
31359
+ "mb-8 md:mb-20 flex flex-col items-center justify-center gap-8",
31376
31360
  headerClassName
31377
31361
  ),
31378
31362
  children: [
31379
- heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h1", { className: cn("text-4xl", headingClassName), children: heading }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-4xl", headingClassName), children: heading })),
31363
+ heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx("h2", { className: cn("text-4xl", headingClassName), children: heading }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("text-4xl", headingClassName), children: heading })),
31380
31364
  badge && /* @__PURE__ */ jsxRuntime.jsx(
31381
31365
  Badge,
31382
31366
  {
@@ -31388,7 +31372,14 @@ function CarouselIconTabs({
31388
31372
  ]
31389
31373
  }
31390
31374
  );
31391
- }, [headerSlot, headerClassName, heading, headingClassName, badge, badgeClassName]);
31375
+ }, [
31376
+ headerSlot,
31377
+ headerClassName,
31378
+ heading,
31379
+ headingClassName,
31380
+ badge,
31381
+ badgeClassName
31382
+ ]);
31392
31383
  const sectionsContent = React52.useMemo(() => {
31393
31384
  if (sectionsSlot) return sectionsSlot;
31394
31385
  if (!sections || sections.length === 0) return null;
@@ -31403,7 +31394,7 @@ function CarouselIconTabs({
31403
31394
  src: item.img,
31404
31395
  alt: typeof item.title === "string" ? item.title : item.alt || "Tab image",
31405
31396
  className: cn(
31406
- "aspect-square h-full w-full object-cover md:aspect-2/1 cursor-pointer transition-transform hover:scale-[1.02]",
31397
+ "aspect-square h-full w-full object-cover md:aspect-2/1 cursor-pointer rounded-xl shadow-xl",
31407
31398
  imageClassName
31408
31399
  ),
31409
31400
  loading: "lazy",
@@ -31428,7 +31419,14 @@ function CarouselIconTabs({
31428
31419
  },
31429
31420
  index
31430
31421
  ));
31431
- }, [sectionsSlot, sections, itemClassName, imageClassName, optixFlowConfig, handleImageClick]);
31422
+ }, [
31423
+ sectionsSlot,
31424
+ sections,
31425
+ itemClassName,
31426
+ imageClassName,
31427
+ optixFlowConfig,
31428
+ handleImageClick
31429
+ ]);
31432
31430
  const tabsContent = React52.useMemo(() => {
31433
31431
  if (!sections || sections.length === 0) return null;
31434
31432
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -31596,16 +31594,7 @@ function TestimonialCarouselCards({
31596
31594
  children: heading
31597
31595
  }
31598
31596
  ),
31599
- /* @__PURE__ */ jsxRuntime.jsx(
31600
- "p",
31601
- {
31602
- className: cn(
31603
- "text-lg text-muted-foreground",
31604
- descriptionClassName
31605
- ),
31606
- children: description
31607
- }
31608
- )
31597
+ /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("text-md", descriptionClassName), children: description })
31609
31598
  ] }),
31610
31599
  /* @__PURE__ */ jsxRuntime.jsxs(
31611
31600
  "div",
@@ -31686,23 +31675,10 @@ function TestimonialCarouselCards({
31686
31675
  "div",
31687
31676
  {
31688
31677
  className: cn(
31689
- "relative flex h-[460px] w-[400px] flex-col items-start justify-end rounded-2xl p-8",
31690
- testimonial.bgColor,
31691
- quotePanelClassName
31678
+ "relative bg-background text-foreground flex h-[460px] w-[400px] flex-col items-start justify-end rounded-2xl p-8"
31692
31679
  ),
31693
31680
  children: [
31694
- /* @__PURE__ */ jsxRuntime.jsx(
31695
- Badge,
31696
- {
31697
- className: cn(
31698
- "mb-auto bg-background px-4 py-2",
31699
- badgeClassName
31700
- ),
31701
- children: testimonial.username
31702
- }
31703
- ),
31704
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "-rotate-[4deg] text-7xl leading-none", children: '"' }),
31705
- /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xl font-semibold", children: testimonial.quote }),
31681
+ /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-lg font-semibold", children: testimonial.quote }),
31706
31682
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-4 text-lg font-medium", children: testimonial.author })
31707
31683
  ]
31708
31684
  }
@@ -31729,7 +31705,8 @@ function TestimonialCarouselCards({
31729
31705
  patternOpacity,
31730
31706
  patternClassName,
31731
31707
  className,
31732
- children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-start justify-between gap-6 px-4 lg:flex-row lg:px-10", children: [
31708
+ containerClassName: "px-4",
31709
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-start justify-between gap-4 lg:flex-row ", children: [
31733
31710
  sidebarContent,
31734
31711
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative w-full overflow-hidden pb-12 lg:flex-1", children: [
31735
31712
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -31770,10 +31747,14 @@ function TestimonialCarouselCards({
31770
31747
  );
31771
31748
  }
31772
31749
  function CarouselIconSidebar({
31750
+ title,
31751
+ description,
31773
31752
  items,
31774
31753
  itemsSlot,
31775
31754
  sidebarSlot,
31776
31755
  className,
31756
+ sectionTitleClassName,
31757
+ sectionDescriptionClassName,
31777
31758
  sidebarClassName,
31778
31759
  iconClassName,
31779
31760
  titleClassName,
@@ -31891,13 +31872,13 @@ function CarouselIconSidebar({
31891
31872
  const itemsContent = React52.useMemo(() => {
31892
31873
  if (itemsSlot) return itemsSlot;
31893
31874
  if (!items || items.length === 0) return null;
31894
- return items.map((image, index) => /* @__PURE__ */ jsxRuntime.jsx(CarouselItem, { className: cn("h-full", itemClassName), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("aspect-2/1 h-full w-full", image.className), children: /* @__PURE__ */ jsxRuntime.jsx(
31875
+ return items.map((image, index) => /* @__PURE__ */ jsxRuntime.jsx(CarouselItem, { className: cn("h-full", itemClassName), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("h-full w-full", image.className), children: /* @__PURE__ */ jsxRuntime.jsx(
31895
31876
  img.Img,
31896
31877
  {
31897
31878
  src: image.src,
31898
31879
  alt: typeof image.title === "string" ? image.title : image.alt || "Carousel image",
31899
31880
  className: cn(
31900
- "h-full w-full rounded-lg object-cover cursor-pointer transition-transform hover:scale-[1.02]",
31881
+ "h-full w-full rounded-lg object-cover cursor-pointer",
31901
31882
  imageClassName
31902
31883
  ),
31903
31884
  loading: "lazy",
@@ -31913,7 +31894,14 @@ function CarouselIconSidebar({
31913
31894
  }
31914
31895
  }
31915
31896
  ) }) }, index));
31916
- }, [itemsSlot, items, itemClassName, imageClassName, optixFlowConfig, handleImageClick]);
31897
+ }, [
31898
+ itemsSlot,
31899
+ items,
31900
+ itemClassName,
31901
+ imageClassName,
31902
+ optixFlowConfig,
31903
+ handleImageClick
31904
+ ]);
31917
31905
  return /* @__PURE__ */ jsxRuntime.jsxs(
31918
31906
  Section,
31919
31907
  {
@@ -31924,6 +31912,25 @@ function CarouselIconSidebar({
31924
31912
  patternClassName,
31925
31913
  className,
31926
31914
  children: [
31915
+ title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
31916
+ title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
31917
+ "h2",
31918
+ {
31919
+ className: cn(
31920
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
31921
+ sectionTitleClassName
31922
+ ),
31923
+ children: title
31924
+ }
31925
+ ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: sectionTitleClassName, children: title })),
31926
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg text-balance", sectionDescriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
31927
+ "div",
31928
+ {
31929
+ className: cn("max-w-lg text-balance", sectionDescriptionClassName),
31930
+ children: description
31931
+ }
31932
+ ))
31933
+ ] }) : null,
31927
31934
  /* @__PURE__ */ jsxRuntime.jsx(Carousel, { setApi, className: cn("w-full", carouselClassName), children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-1 gap-6 md:grid-cols-5", children: [
31928
31935
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "md:col-span-2", children: sidebarContent }),
31929
31936
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-full md:col-span-3", children: /* @__PURE__ */ jsxRuntime.jsx(CarouselContent, { className: carouselContentClassName, children: itemsContent }) })
@@ -32648,33 +32655,21 @@ function CarouselTabsContent({
32648
32655
  patternClassName,
32649
32656
  className: cn("overflow-hidden", className),
32650
32657
  children: [
32651
- title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
32658
+ title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
32652
32659
  title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
32653
32660
  "h2",
32654
32661
  {
32655
32662
  className: cn(
32656
- "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl",
32663
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
32657
32664
  titleClassName
32658
32665
  ),
32659
32666
  children: title
32660
32667
  }
32661
32668
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: titleClassName, children: title })),
32662
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
32663
- "p",
32664
- {
32665
- className: cn(
32666
- "max-w-lg text-muted-foreground",
32667
- descriptionClassName
32668
- ),
32669
- children: description
32670
- }
32671
- ) : /* @__PURE__ */ jsxRuntime.jsx(
32669
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg text-balance", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
32672
32670
  "div",
32673
32671
  {
32674
- className: cn(
32675
- "max-w-lg text-muted-foreground",
32676
- descriptionClassName
32677
- ),
32672
+ className: cn("max-w-lg text-balance", descriptionClassName),
32678
32673
  children: description
32679
32674
  }
32680
32675
  ))
@@ -32848,12 +32843,12 @@ function CarouselScaleFocus({
32848
32843
  className: cn("overflow-hidden", className),
32849
32844
  children: [
32850
32845
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:px-45", children: [
32851
- title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
32846
+ title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
32852
32847
  title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
32853
32848
  "h2",
32854
32849
  {
32855
32850
  className: cn(
32856
- "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl",
32851
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
32857
32852
  titleClassName
32858
32853
  ),
32859
32854
  children: title
@@ -32862,19 +32857,13 @@ function CarouselScaleFocus({
32862
32857
  description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
32863
32858
  "p",
32864
32859
  {
32865
- className: cn(
32866
- "max-w-lg text-muted-foreground",
32867
- descriptionClassName
32868
- ),
32860
+ className: cn("max-w-lg text-balance", descriptionClassName),
32869
32861
  children: description
32870
32862
  }
32871
32863
  ) : /* @__PURE__ */ jsxRuntime.jsx(
32872
32864
  "div",
32873
32865
  {
32874
- className: cn(
32875
- "max-w-lg text-muted-foreground",
32876
- descriptionClassName
32877
- ),
32866
+ className: cn("max-w-lg text-balance", descriptionClassName),
32878
32867
  children: description
32879
32868
  }
32880
32869
  ))
@@ -33178,33 +33167,21 @@ function MasonryMotionGrid({
33178
33167
  patternClassName,
33179
33168
  className,
33180
33169
  children: [
33181
- title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
33170
+ title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
33182
33171
  title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
33183
33172
  "h2",
33184
33173
  {
33185
33174
  className: cn(
33186
- "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl",
33175
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
33187
33176
  titleClassName
33188
33177
  ),
33189
33178
  children: title
33190
33179
  }
33191
33180
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: titleClassName, children: title })),
33192
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
33193
- "p",
33194
- {
33195
- className: cn(
33196
- "max-w-lg text-muted-foreground",
33197
- descriptionClassName
33198
- ),
33199
- children: description
33200
- }
33201
- ) : /* @__PURE__ */ jsxRuntime.jsx(
33181
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg text-balance", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
33202
33182
  "div",
33203
33183
  {
33204
- className: cn(
33205
- "max-w-lg text-muted-foreground",
33206
- descriptionClassName
33207
- ),
33184
+ className: cn("max-w-lg text-balance", descriptionClassName),
33208
33185
  children: description
33209
33186
  }
33210
33187
  ))
@@ -33272,9 +33249,9 @@ function BlurVignette({
33272
33249
  --r: max(var(--transition-length), calc(var(--radius) - var(--inset)));
33273
33250
  --corner-size: calc(var(--r) + var(--inset)) calc(var(--r) + var(--inset));
33274
33251
  --corner-gradient: transparent 0px,
33275
- transparent calc(var(--r) - var(--transition-length)),
33252
+ transparent calc(var(--r) - var(--transition-length)),
33276
33253
  black var(--r);
33277
- --fill-gradient: black,
33254
+ --fill-gradient: black,
33278
33255
  black var(--inset),
33279
33256
  transparent calc(var(--inset) + var(--transition-length)),
33280
33257
  transparent calc(100% - var(--transition-length) - var(--inset)),
@@ -33287,21 +33264,21 @@ function BlurVignette({
33287
33264
  radial-gradient(at bottom left, var(--corner-gradient)),
33288
33265
  radial-gradient(at top left, var(--corner-gradient)),
33289
33266
  radial-gradient(at top right, var(--corner-gradient));
33290
- -webkit-mask-size: 100% var(--fill-narrow-size),
33267
+ -webkit-mask-size: 100% var(--fill-narrow-size),
33291
33268
  var(--fill-narrow-size) 100%,
33292
- var(--corner-size),
33293
- var(--corner-size),
33269
+ var(--corner-size),
33270
+ var(--corner-size),
33294
33271
  var(--corner-size),
33295
33272
  var(--corner-size);
33296
- -webkit-mask-position: 0 var(--fill-farther-position),
33273
+ -webkit-mask-position: 0 var(--fill-farther-position),
33297
33274
  var(--fill-farther-position) 0,
33298
- 0 0,
33299
- 100% 0,
33300
- 100% 100%,
33275
+ 0 0,
33276
+ 100% 0,
33277
+ 100% 100%,
33301
33278
  0 100%;
33302
33279
  -webkit-mask-repeat: no-repeat;
33303
33280
  opacity: 0;
33304
- transition: opacity 0.3s ease;
33281
+ transition: opacity 0.3s ease;
33305
33282
  }
33306
33283
 
33307
33284
  .blur-vignette.active {
@@ -33400,33 +33377,21 @@ function BlurVignetteGrid({
33400
33377
  patternClassName,
33401
33378
  className,
33402
33379
  children: [
33403
- title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
33380
+ title || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
33404
33381
  title && (typeof title === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
33405
33382
  "h2",
33406
33383
  {
33407
33384
  className: cn(
33408
- "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl",
33385
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
33409
33386
  titleClassName
33410
33387
  ),
33411
33388
  children: title
33412
33389
  }
33413
33390
  ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: titleClassName, children: title })),
33414
- description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
33415
- "p",
33416
- {
33417
- className: cn(
33418
- "max-w-lg text-muted-foreground",
33419
- descriptionClassName
33420
- ),
33421
- children: description
33422
- }
33423
- ) : /* @__PURE__ */ jsxRuntime.jsx(
33391
+ description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg text-balance", descriptionClassName), children: description }) : /* @__PURE__ */ jsxRuntime.jsx(
33424
33392
  "div",
33425
33393
  {
33426
- className: cn(
33427
- "max-w-lg text-muted-foreground",
33428
- descriptionClassName
33429
- ),
33394
+ className: cn("max-w-lg text-balance", descriptionClassName),
33430
33395
  children: description
33431
33396
  }
33432
33397
  ))
@@ -33434,7 +33399,11 @@ function BlurVignetteGrid({
33434
33399
  /* @__PURE__ */ jsxRuntime.jsx(
33435
33400
  "div",
33436
33401
  {
33437
- className: cn(`grid grid-cols-1 md:grid-cols-${gridColumns}`, gridGap, gridClassName),
33402
+ className: cn(
33403
+ `grid grid-cols-1 md:grid-cols-${gridColumns}`,
33404
+ gridGap,
33405
+ gridClassName
33406
+ ),
33438
33407
  children: imagesContent
33439
33408
  }
33440
33409
  )
@@ -33560,27 +33529,24 @@ function InteriorCarousel({
33560
33529
  patternClassName,
33561
33530
  className,
33562
33531
  children: [
33563
- heading || descriptionContent ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-10", children: [
33564
- heading && /* @__PURE__ */ jsxRuntime.jsx(
33532
+ heading || description ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4 mb-16", children: [
33533
+ heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
33565
33534
  "h2",
33566
33535
  {
33567
33536
  className: cn(
33568
- "mb-4 text-center text-4xl font-semibold",
33537
+ "text-xl font-medium tracking-tight md:text-2xl lg:text-3xl text-balance",
33569
33538
  headingClassName
33570
33539
  ),
33571
33540
  children: heading
33572
33541
  }
33573
- ),
33574
- descriptionContent && /* @__PURE__ */ jsxRuntime.jsx(
33575
- "p",
33542
+ ) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
33543
+ descriptionContent && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("max-w-lg text-balance", descriptionClassName), children: descriptionContent }) : /* @__PURE__ */ jsxRuntime.jsx(
33544
+ "div",
33576
33545
  {
33577
- className: cn(
33578
- "text-center text-sm text-muted-foreground",
33579
- descriptionClassName
33580
- ),
33546
+ className: cn("max-w-lg text-balance", descriptionClassName),
33581
33547
  children: descriptionContent
33582
33548
  }
33583
- )
33549
+ ))
33584
33550
  ] }) : null,
33585
33551
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: /* @__PURE__ */ jsxRuntime.jsxs(
33586
33552
  Carousel,