@planetaexo/design-system 0.77.1 → 0.79.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1565,12 +1565,28 @@ function AdventureCard({
1565
1565
  item
1566
1566
  ] }, i)) })
1567
1567
  ] }),
1568
- adventure.cancellationPolicy && adventure.cancellationPolicy.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2.5 mt-1", children: [
1568
+ adventure.cancellationPolicy && adventure.cancellationPolicy.trim() && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2.5 mt-1", children: [
1569
1569
  /* @__PURE__ */ jsxRuntime.jsx("h4", { className: "text-base font-bold text-foreground font-heading", children: (_r = adventure.cancellationPolicyLabel) != null ? _r : "Cancellation policy" }),
1570
- /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-1.5", children: adventure.cancellationPolicy.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs("li", { className: "flex items-start gap-2 text-base text-muted-foreground font-sans", children: [
1571
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "w-1.5 h-1.5 rounded-full bg-primary shrink-0 mt-2.5" }),
1572
- item
1573
- ] }, i)) })
1570
+ /* @__PURE__ */ jsxRuntime.jsx(
1571
+ "div",
1572
+ {
1573
+ className: cn(
1574
+ "text-foreground",
1575
+ "[&_p]:text-base [&_p]:text-foreground/80 [&_p]:leading-snug [&_p]:mb-2",
1576
+ "[&_strong]:font-bold [&_strong]:text-foreground",
1577
+ "[&_em]:italic",
1578
+ "[&_a]:text-primary [&_a]:underline [&_a]:underline-offset-2",
1579
+ "[&_ul:not(.list-check):not(.list-cross)]:list-disc [&_ul:not(.list-check):not(.list-cross)]:pl-5 [&_ul:not(.list-check):not(.list-cross)]:space-y-1",
1580
+ "[&_ol]:list-decimal [&_ol]:pl-5 [&_ol]:space-y-1",
1581
+ "[&_li]:text-base [&_li]:text-muted-foreground [&_li]:leading-snug",
1582
+ "[&_.list-check]:list-none [&_.list-check]:pl-5 [&_.list-check]:space-y-1",
1583
+ "[&_.list-check_li]:relative [&_.list-check_li]:before:absolute [&_.list-check_li]:before:-left-5 [&_.list-check_li]:before:content-['\u2713'] [&_.list-check_li]:before:text-primary [&_.list-check_li]:before:font-bold",
1584
+ "[&_.list-cross]:list-none [&_.list-cross]:pl-5 [&_.list-cross]:space-y-1",
1585
+ "[&_.list-cross_li]:relative [&_.list-cross_li]:before:absolute [&_.list-cross_li]:before:-left-5 [&_.list-cross_li]:before:content-['\u2717'] [&_.list-cross_li]:before:text-destructive [&_.list-cross_li]:before:font-bold"
1586
+ ),
1587
+ dangerouslySetInnerHTML: { __html: adventure.cancellationPolicy }
1588
+ }
1589
+ )
1574
1590
  ] })
1575
1591
  ] })
1576
1592
  ] });
@@ -2866,19 +2882,24 @@ function AdventureSection({
2866
2882
  i
2867
2883
  )) })
2868
2884
  ] }),
2869
- adventure.cancellationPolicy && adventure.cancellationPolicy.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", children: [
2885
+ adventure.cancellationPolicy && adventure.cancellationPolicy.trim() && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", children: [
2870
2886
  /* @__PURE__ */ jsxRuntime.jsx("h4", { className: "text-xs font-bold text-muted-foreground font-heading uppercase tracking-widest", children: (_k = (_j = labels == null ? void 0 : labels.adventureSections) == null ? void 0 : _j.cancellationPolicy) != null ? _k : "Cancellation policy" }),
2871
- /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-1.5", children: adventure.cancellationPolicy.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(
2872
- "li",
2887
+ /* @__PURE__ */ jsxRuntime.jsx(
2888
+ "div",
2873
2889
  {
2874
- className: "flex items-start gap-2 text-sm text-muted-foreground font-sans",
2875
- children: [
2876
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "w-1.5 h-1.5 rounded-full bg-primary shrink-0 mt-2.5" }),
2877
- item
2878
- ]
2879
- },
2880
- i
2881
- )) })
2890
+ className: cn(
2891
+ "text-foreground",
2892
+ "[&_p]:text-sm [&_p]:text-foreground/80 [&_p]:leading-snug [&_p]:mb-2",
2893
+ "[&_strong]:font-bold [&_strong]:text-foreground",
2894
+ "[&_em]:italic",
2895
+ "[&_a]:text-primary [&_a]:underline [&_a]:underline-offset-2",
2896
+ "[&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-1",
2897
+ "[&_ol]:list-decimal [&_ol]:pl-5 [&_ol]:space-y-1",
2898
+ "[&_li]:text-sm [&_li]:text-muted-foreground [&_li]:leading-snug"
2899
+ ),
2900
+ dangerouslySetInnerHTML: { __html: adventure.cancellationPolicy }
2901
+ }
2902
+ )
2882
2903
  ] })
2883
2904
  ] }),
2884
2905
  adventure.rooms && adventure.rooms.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "border-t border-border px-5 lg:px-6 py-5 flex flex-col gap-3", children: [
@@ -4139,6 +4160,7 @@ var DEFAULT_LABELS = {
4139
4160
  lineItemEquals: "=",
4140
4161
  includedHeading: "O que est\xE1 incluso",
4141
4162
  notIncludedHeading: "O que n\xE3o est\xE1 incluso",
4163
+ cancellationPolicyHeading: "Cancellation policy",
4142
4164
  childBadge: "child",
4143
4165
  adultsUnit: "adult(s)",
4144
4166
  childrenUnit: "child(ren)",
@@ -4170,6 +4192,7 @@ function BookingAdventureCard({
4170
4192
  partner,
4171
4193
  included,
4172
4194
  notIncluded,
4195
+ cancellationPolicy,
4173
4196
  lineItems,
4174
4197
  subtotal,
4175
4198
  rooms,
@@ -4177,7 +4200,7 @@ function BookingAdventureCard({
4177
4200
  labels,
4178
4201
  className
4179
4202
  }) {
4180
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
4203
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A;
4181
4204
  const l = {
4182
4205
  travellersHeading: (_a = labels == null ? void 0 : labels.travellersHeading) != null ? _a : DEFAULT_LABELS.travellersHeading,
4183
4206
  detailsHeading: (_b = labels == null ? void 0 : labels.detailsHeading) != null ? _b : DEFAULT_LABELS.detailsHeading,
@@ -4188,18 +4211,19 @@ function BookingAdventureCard({
4188
4211
  lineItemEquals: (_g = labels == null ? void 0 : labels.lineItemEquals) != null ? _g : DEFAULT_LABELS.lineItemEquals,
4189
4212
  includedHeading: (_h = labels == null ? void 0 : labels.includedHeading) != null ? _h : DEFAULT_LABELS.includedHeading,
4190
4213
  notIncludedHeading: (_i = labels == null ? void 0 : labels.notIncludedHeading) != null ? _i : DEFAULT_LABELS.notIncludedHeading,
4191
- childBadge: (_j = labels == null ? void 0 : labels.childBadge) != null ? _j : DEFAULT_LABELS.childBadge,
4192
- adultsUnit: (_k = labels == null ? void 0 : labels.adultsUnit) != null ? _k : DEFAULT_LABELS.adultsUnit,
4193
- childrenUnit: (_l = labels == null ? void 0 : labels.childrenUnit) != null ? _l : DEFAULT_LABELS.childrenUnit,
4194
- accommodationsHeading: (_m = labels == null ? void 0 : labels.accommodationsHeading) != null ? _m : DEFAULT_LABELS.accommodationsHeading,
4195
- accommodationRoomHeading: (_n = labels == null ? void 0 : labels.accommodationRoomHeading) != null ? _n : DEFAULT_LABELS.accommodationRoomHeading,
4214
+ cancellationPolicyHeading: (_j = labels == null ? void 0 : labels.cancellationPolicyHeading) != null ? _j : DEFAULT_LABELS.cancellationPolicyHeading,
4215
+ childBadge: (_k = labels == null ? void 0 : labels.childBadge) != null ? _k : DEFAULT_LABELS.childBadge,
4216
+ adultsUnit: (_l = labels == null ? void 0 : labels.adultsUnit) != null ? _l : DEFAULT_LABELS.adultsUnit,
4217
+ childrenUnit: (_m = labels == null ? void 0 : labels.childrenUnit) != null ? _m : DEFAULT_LABELS.childrenUnit,
4218
+ accommodationsHeading: (_n = labels == null ? void 0 : labels.accommodationsHeading) != null ? _n : DEFAULT_LABELS.accommodationsHeading,
4219
+ accommodationRoomHeading: (_o = labels == null ? void 0 : labels.accommodationRoomHeading) != null ? _o : DEFAULT_LABELS.accommodationRoomHeading,
4196
4220
  bedArrangementLabels: {
4197
- DOUBLE: (_p = (_o = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _o.DOUBLE) != null ? _p : DEFAULT_LABELS.bedArrangementLabels.DOUBLE,
4198
- TWIN: (_r = (_q = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _q.TWIN) != null ? _r : DEFAULT_LABELS.bedArrangementLabels.TWIN,
4199
- SINGLE: (_t = (_s = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _s.SINGLE) != null ? _t : DEFAULT_LABELS.bedArrangementLabels.SINGLE,
4200
- TRIPLE: (_v = (_u = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _u.TRIPLE) != null ? _v : DEFAULT_LABELS.bedArrangementLabels.TRIPLE,
4201
- QUADRUPLE: (_x = (_w = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _w.QUADRUPLE) != null ? _x : DEFAULT_LABELS.bedArrangementLabels.QUADRUPLE,
4202
- QUINTUPLE: (_z = (_y = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _y.QUINTUPLE) != null ? _z : DEFAULT_LABELS.bedArrangementLabels.QUINTUPLE
4221
+ DOUBLE: (_q = (_p = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _p.DOUBLE) != null ? _q : DEFAULT_LABELS.bedArrangementLabels.DOUBLE,
4222
+ TWIN: (_s = (_r = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _r.TWIN) != null ? _s : DEFAULT_LABELS.bedArrangementLabels.TWIN,
4223
+ SINGLE: (_u = (_t = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _t.SINGLE) != null ? _u : DEFAULT_LABELS.bedArrangementLabels.SINGLE,
4224
+ TRIPLE: (_w = (_v = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _v.TRIPLE) != null ? _w : DEFAULT_LABELS.bedArrangementLabels.TRIPLE,
4225
+ QUADRUPLE: (_y = (_x = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _x.QUADRUPLE) != null ? _y : DEFAULT_LABELS.bedArrangementLabels.QUADRUPLE,
4226
+ QUINTUPLE: (_A = (_z = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _z.QUINTUPLE) != null ? _A : DEFAULT_LABELS.bedArrangementLabels.QUINTUPLE
4203
4227
  }
4204
4228
  };
4205
4229
  const hasTravellers = !!travellers && travellers.length > 0;
@@ -4207,6 +4231,7 @@ function BookingAdventureCard({
4207
4231
  const hasDescription = !!description && description.trim().length > 0;
4208
4232
  const hasIncluded = !!included && included.length > 0;
4209
4233
  const hasNotIncluded = !!notIncluded && notIncluded.length > 0;
4234
+ const hasCancellationPolicy = !!cancellationPolicy && cancellationPolicy.trim().length > 0;
4210
4235
  const hasLineItems = lineItems.length > 0;
4211
4236
  const hasRooms = !!rooms && rooms.length > 0;
4212
4237
  const dateRange = endDate ? `${startDate} \u2192 ${endDate}` : startDate;
@@ -4891,6 +4916,32 @@ function BookingAdventureCard({
4891
4916
  i
4892
4917
  ))
4893
4918
  ] }),
4919
+ hasCancellationPolicy && /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { marginTop: "10px" }, children: [
4920
+ /* @__PURE__ */ jsxRuntime.jsx(
4921
+ "h4",
4922
+ {
4923
+ style: {
4924
+ fontSize: "14px",
4925
+ fontWeight: 700,
4926
+ color: emailTokens.foreground,
4927
+ margin: "0 0 8px 0"
4928
+ },
4929
+ children: l.cancellationPolicyHeading
4930
+ }
4931
+ ),
4932
+ /* @__PURE__ */ jsxRuntime.jsx(
4933
+ "div",
4934
+ {
4935
+ style: {
4936
+ fontSize: "14px",
4937
+ color: emailTokens.bodyText,
4938
+ lineHeight: "1.4",
4939
+ margin: 0
4940
+ },
4941
+ dangerouslySetInnerHTML: { __html: cancellationPolicy }
4942
+ }
4943
+ )
4944
+ ] }),
4894
4945
  hasLineItems && /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { marginTop: "4px" }, children: [
4895
4946
  /* @__PURE__ */ jsxRuntime.jsx(
4896
4947
  "hr",
@@ -5283,6 +5334,7 @@ var DEFAULT_LABELS3 = {
5283
5334
  itineraryLabel: "Details",
5284
5335
  includedLabel: "O que est\xE1 incluso",
5285
5336
  notIncludedLabel: "O que n\xE3o est\xE1 incluso",
5337
+ cancellationPolicyLabel: "Cancellation policy",
5286
5338
  pricingLabel: "Pricing",
5287
5339
  subtotalLabel: "Subtotal",
5288
5340
  totalLabel: "Total",
@@ -5461,6 +5513,7 @@ function BookingPaymentConfirmationEmail({
5461
5513
  partner: adventure.partnerName,
5462
5514
  included: adventure.included,
5463
5515
  notIncluded: adventure.notIncluded,
5516
+ cancellationPolicy: adventure.cancellationPolicy,
5464
5517
  lineItems: lineItemsToPass,
5465
5518
  subtotal: adventure.subtotal,
5466
5519
  rooms: adventure.rooms,
@@ -5472,6 +5525,7 @@ function BookingPaymentConfirmationEmail({
5472
5525
  subtotalLabel: l.subtotalLabel,
5473
5526
  includedHeading: l.includedLabel,
5474
5527
  notIncludedHeading: l.notIncludedLabel,
5528
+ cancellationPolicyHeading: l.cancellationPolicyLabel,
5475
5529
  childBadge: l.childBadge,
5476
5530
  adultsUnit: l.adultsUnit,
5477
5531
  childrenUnit: l.childrenUnit,
@@ -10429,9 +10483,15 @@ function CancellationForm({
10429
10483
  ] })
10430
10484
  ] }),
10431
10485
  selected && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 pl-7 space-y-4", children: [
10432
- adv.cancellationPolicy && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rounded-md bg-muted/50 border border-border p-3", children: [
10486
+ adv.cancellationPolicy && adv.cancellationPolicy.trim() && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rounded-md bg-muted/50 border border-border p-3", children: [
10433
10487
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xs font-ui font-semibold uppercase tracking-wide text-muted-foreground mb-1", children: labels.policyHeading }),
10434
- /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-foreground whitespace-pre-line", children: adv.cancellationPolicy })
10488
+ /* @__PURE__ */ jsxRuntime.jsx(
10489
+ "div",
10490
+ {
10491
+ className: "text-sm text-foreground [&_ul]:list-disc [&_ul]:pl-5 [&_ol]:list-decimal [&_ol]:pl-5 [&_li]:mb-1 [&_p]:mb-2 [&_p:last-child]:mb-0 [&_a]:underline",
10492
+ dangerouslySetInnerHTML: { __html: adv.cancellationPolicy }
10493
+ }
10494
+ )
10435
10495
  ] }),
10436
10496
  adv.participants.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
10437
10497
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xs font-ui font-semibold uppercase tracking-wide text-muted-foreground mb-2", children: labels.participantsHeading }),
@@ -19195,6 +19255,167 @@ function USP({
19195
19255
  )
19196
19256
  ] }) });
19197
19257
  }
19258
+ var C = {
19259
+ imageOverlay: "linear-gradient(90deg, rgba(7,33,27,.93) 0%, rgba(8,42,34,.82) 52%, rgba(8,42,34,.62) 100%)",
19260
+ baseBg: "#0a2c25",
19261
+ eyebrow: "#a7e8c4",
19262
+ head: "#f4f1e9",
19263
+ sub: "rgba(244,241,233,.78)",
19264
+ desc: "rgba(244,241,233,.72)",
19265
+ divider: "rgba(244,241,233,.16)",
19266
+ chipBg: "rgba(167,232,196,.16)",
19267
+ chipIcon: "#bff0d6",
19268
+ ctaBg: "#bff0d6",
19269
+ ctaText: "#08231e"
19270
+ };
19271
+ var COLS2 = {
19272
+ 2: "sm:grid-cols-2",
19273
+ 3: "sm:grid-cols-2 lg:grid-cols-3",
19274
+ 4: "sm:grid-cols-2 lg:grid-cols-4"
19275
+ };
19276
+ var ArrowIcon3 = () => /* @__PURE__ */ jsxRuntime.jsxs(
19277
+ "svg",
19278
+ {
19279
+ viewBox: "0 0 24 24",
19280
+ width: "18",
19281
+ height: "18",
19282
+ fill: "none",
19283
+ stroke: "currentColor",
19284
+ strokeWidth: 2,
19285
+ strokeLinecap: "round",
19286
+ strokeLinejoin: "round",
19287
+ "aria-hidden": true,
19288
+ className: "ml-2",
19289
+ children: [
19290
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12h14" }),
19291
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 5 7 7-7 7" })
19292
+ ]
19293
+ }
19294
+ );
19295
+ function USPBand({
19296
+ eyebrow,
19297
+ heading,
19298
+ subheading,
19299
+ items,
19300
+ imageSrc,
19301
+ cta,
19302
+ columns,
19303
+ className
19304
+ }) {
19305
+ const cols = columns != null ? columns : Math.min(Math.max(items.length, 2), 4);
19306
+ return /* @__PURE__ */ jsxRuntime.jsxs(
19307
+ "section",
19308
+ {
19309
+ className: cn("relative w-full overflow-hidden", className),
19310
+ style: { backgroundColor: C.baseBg },
19311
+ children: [
19312
+ imageSrc && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
19313
+ /* @__PURE__ */ jsxRuntime.jsx(
19314
+ "img",
19315
+ {
19316
+ src: imageSrc,
19317
+ alt: "",
19318
+ "aria-hidden": true,
19319
+ loading: "lazy",
19320
+ decoding: "async",
19321
+ className: "absolute inset-0 h-full w-full object-cover"
19322
+ }
19323
+ ),
19324
+ /* @__PURE__ */ jsxRuntime.jsx(
19325
+ "div",
19326
+ {
19327
+ "aria-hidden": true,
19328
+ className: "absolute inset-0",
19329
+ style: { background: C.imageOverlay }
19330
+ }
19331
+ )
19332
+ ] }),
19333
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative mx-auto w-full max-w-6xl px-6 py-20 sm:px-8 sm:py-24", children: [
19334
+ eyebrow && /* @__PURE__ */ jsxRuntime.jsx(
19335
+ "p",
19336
+ {
19337
+ className: "font-heading text-xs font-bold uppercase tracking-[0.2em]",
19338
+ style: { color: C.eyebrow },
19339
+ children: eyebrow
19340
+ }
19341
+ ),
19342
+ /* @__PURE__ */ jsxRuntime.jsx(
19343
+ "h2",
19344
+ {
19345
+ className: "mt-4 max-w-[15ch] font-heading text-3xl font-black uppercase leading-[0.98] tracking-tight sm:text-4xl lg:text-5xl",
19346
+ style: { color: C.head },
19347
+ children: heading
19348
+ }
19349
+ ),
19350
+ subheading && /* @__PURE__ */ jsxRuntime.jsx(
19351
+ "p",
19352
+ {
19353
+ className: "mt-4 max-w-[52ch] font-sans text-lg leading-relaxed",
19354
+ style: { color: C.sub },
19355
+ children: subheading
19356
+ }
19357
+ ),
19358
+ cta && /* @__PURE__ */ jsxRuntime.jsxs(
19359
+ "a",
19360
+ {
19361
+ href: cta.href,
19362
+ onClick: cta.onClick,
19363
+ className: "mt-7 inline-flex items-center rounded-full px-6 py-3 font-heading text-sm font-bold uppercase tracking-wide no-underline transition-transform duration-200 hover:-translate-y-0.5",
19364
+ style: { backgroundColor: C.ctaBg, color: C.ctaText },
19365
+ children: [
19366
+ cta.label,
19367
+ /* @__PURE__ */ jsxRuntime.jsx(ArrowIcon3, {})
19368
+ ]
19369
+ }
19370
+ ),
19371
+ /* @__PURE__ */ jsxRuntime.jsx(
19372
+ "div",
19373
+ {
19374
+ className: cn(
19375
+ "mt-14 grid grid-cols-1 gap-x-8 gap-y-10 lg:gap-x-0",
19376
+ COLS2[cols]
19377
+ ),
19378
+ children: items.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(
19379
+ "div",
19380
+ {
19381
+ className: "lg:px-7 lg:[&:first-child]:pl-0 lg:[&:not(:first-child)]:border-l lg:[&:not(:first-child)]:border-solid",
19382
+ style: { borderColor: C.divider },
19383
+ children: [
19384
+ item.icon && /* @__PURE__ */ jsxRuntime.jsx(
19385
+ "span",
19386
+ {
19387
+ className: "mb-5 flex h-[54px] w-[54px] items-center justify-center rounded-full [&>svg]:size-6",
19388
+ style: { backgroundColor: C.chipBg, color: C.chipIcon },
19389
+ children: item.icon
19390
+ }
19391
+ ),
19392
+ /* @__PURE__ */ jsxRuntime.jsx(
19393
+ "h3",
19394
+ {
19395
+ className: "font-heading text-lg font-bold leading-snug",
19396
+ style: { color: C.head },
19397
+ children: item.title
19398
+ }
19399
+ ),
19400
+ /* @__PURE__ */ jsxRuntime.jsx(
19401
+ "p",
19402
+ {
19403
+ className: "mt-3 font-sans text-[15px] leading-relaxed",
19404
+ style: { color: C.desc },
19405
+ children: item.description
19406
+ }
19407
+ )
19408
+ ]
19409
+ },
19410
+ i
19411
+ ))
19412
+ }
19413
+ )
19414
+ ] })
19415
+ ]
19416
+ }
19417
+ );
19418
+ }
19198
19419
  function RotatingSubtitle({
19199
19420
  phrases,
19200
19421
  interval,
@@ -19915,6 +20136,7 @@ exports.TripHeader = TripHeader;
19915
20136
  exports.TripPage = TripPage;
19916
20137
  exports.TrustpilotEmbed = TrustpilotEmbed;
19917
20138
  exports.USP = USP;
20139
+ exports.USPBand = USPBand;
19918
20140
  exports.buttonVariants = buttonVariants;
19919
20141
  exports.chipVariants = chipVariants;
19920
20142
  exports.cn = cn;