@zenpatient-org/healthspan-marketing-ui 0.1.21 → 0.1.23

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 (126) hide show
  1. package/README.md +11 -1
  2. package/dist/components/Button/Button.es.js +24 -6
  3. package/dist/components/ComplexTooltip/ComplexTooltip.cjs.js +1 -1
  4. package/dist/components/ComplexTooltip/ComplexTooltip.d.ts +5 -13
  5. package/dist/components/ComplexTooltip/ComplexTooltip.es.js +49 -59
  6. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/ComplexTooltipContent.cjs.js +1 -0
  7. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/ComplexTooltipContent.d.ts +10 -0
  8. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/ComplexTooltipContent.es.js +52 -0
  9. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/complexTooltipContent.module.css.cjs.js +1 -0
  10. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/complexTooltipContent.module.css.es.js +15 -0
  11. package/dist/components/ComplexTooltip/components/ComplexTooltipContent/index.d.ts +1 -0
  12. package/dist/components/ComplexTooltip/index.d.ts +1 -0
  13. package/dist/components/ComplexTooltip/types.d.ts +13 -0
  14. package/dist/components/FilterMenu/FilterMenu.d.ts +1 -1
  15. package/dist/components/FilterMenu/FilterMenu.es.js +17 -2
  16. package/dist/components/InfiniteScroll/InfiniteScroll.es.js +9 -1
  17. package/dist/components/Label/Label.es.js +9 -1
  18. package/dist/components/Pricing/Pricing.cjs.js +1 -0
  19. package/dist/components/Pricing/Pricing.d.ts +3 -0
  20. package/dist/components/Pricing/Pricing.es.js +41 -0
  21. package/dist/components/Pricing/components/BenefitItem/BenefitItem.cjs.js +1 -0
  22. package/dist/components/Pricing/components/BenefitItem/BenefitItem.d.ts +8 -0
  23. package/dist/components/Pricing/components/BenefitItem/BenefitItem.es.js +10 -0
  24. package/dist/components/Pricing/components/BenefitItem/benefitItem.module.css.cjs.js +1 -0
  25. package/dist/components/Pricing/components/BenefitItem/benefitItem.module.css.es.js +7 -0
  26. package/dist/components/Pricing/components/BenefitItem/index.d.ts +1 -0
  27. package/dist/components/Pricing/components/index.d.ts +1 -0
  28. package/dist/components/Pricing/index.d.ts +2 -0
  29. package/dist/components/Pricing/pricing.module.css.cjs.js +1 -0
  30. package/dist/components/Pricing/pricing.module.css.es.js +25 -0
  31. package/dist/components/Pricing/types.d.ts +17 -0
  32. package/dist/components/ProductGalleryCard/ProductGalleryCard.cjs.js +1 -1
  33. package/dist/components/ProductGalleryCard/ProductGalleryCard.d.ts +5 -1
  34. package/dist/components/ProductGalleryCard/ProductGalleryCard.es.js +37 -15
  35. package/dist/components/ProductGalleryCard/productGalleryCard.module.css.cjs.js +1 -1
  36. package/dist/components/ProductGalleryCard/productGalleryCard.module.css.es.js +14 -12
  37. package/dist/components/ProductPairs/ProductPairs.cjs.js +1 -0
  38. package/dist/components/ProductPairs/ProductPairs.d.ts +7 -0
  39. package/dist/components/ProductPairs/ProductPairs.es.js +55 -0
  40. package/dist/components/ProductPairs/index.d.ts +1 -0
  41. package/dist/components/ProductPairs/productPairs.module.css.cjs.js +1 -0
  42. package/dist/components/ProductPairs/productPairs.module.css.es.js +17 -0
  43. package/dist/components/ProgressButton/ProgressButton.es.js +9 -1
  44. package/dist/components/StepsCarousel/StepsCarousel.cjs.js +1 -1
  45. package/dist/components/StepsCarousel/StepsCarousel.es.js +110 -56
  46. package/dist/components/StudyGridCard/StudyGridCard.es.js +36 -6
  47. package/dist/components/Tabs/TabsWithFade.es.js +10 -1
  48. package/dist/components/Typography/Typography.es.js +8 -1
  49. package/dist/healthspan-marketing-ui.css +1 -1
  50. package/dist/modules/Benefits/Benefits.cjs.js +1 -0
  51. package/dist/modules/Benefits/Benefits.d.ts +14 -0
  52. package/dist/modules/Benefits/Benefits.es.js +30 -0
  53. package/dist/modules/Benefits/benefits.module.css.cjs.js +1 -0
  54. package/dist/modules/Benefits/benefits.module.css.es.js +25 -0
  55. package/dist/modules/Benefits/components/BenefitItem/BenefitItem.cjs.js +1 -0
  56. package/dist/modules/Benefits/components/BenefitItem/BenefitItem.d.ts +7 -0
  57. package/dist/modules/Benefits/components/BenefitItem/BenefitItem.es.js +13 -0
  58. package/dist/modules/Benefits/components/BenefitItem/benefitItem.module.css.cjs.js +1 -0
  59. package/dist/modules/Benefits/components/BenefitItem/benefitItem.module.css.es.js +11 -0
  60. package/dist/modules/Benefits/components/BenefitItem/index.d.ts +1 -0
  61. package/dist/modules/Benefits/components/BenefitTag/BenefitTag.cjs.js +1 -0
  62. package/dist/modules/Benefits/components/BenefitTag/BenefitTag.d.ts +6 -0
  63. package/dist/modules/Benefits/components/BenefitTag/BenefitTag.es.js +8 -0
  64. package/dist/modules/Benefits/components/BenefitTag/benefitTag.module.css.cjs.js +1 -0
  65. package/dist/modules/Benefits/components/BenefitTag/benefitTag.module.css.es.js +9 -0
  66. package/dist/modules/Benefits/components/BenefitTag/index.d.ts +1 -0
  67. package/dist/modules/Benefits/components/index.d.ts +2 -0
  68. package/dist/modules/Benefits/index.d.ts +1 -0
  69. package/dist/modules/Compare/Compare.d.ts +3 -0
  70. package/dist/modules/Compare/index.d.ts +1 -0
  71. package/dist/modules/Compare/types.d.ts +9 -0
  72. package/dist/modules/Comparison/Comparison.es.js +20 -5
  73. package/dist/modules/FeaturedIn/FeaturedIn.es.js +14 -5
  74. package/dist/modules/FeaturesGallery/FeaturesGallery.es.js +9 -1
  75. package/dist/modules/FeaturesGallery/components/FeatureGrid/FeatureGrid.es.js +32 -17
  76. package/dist/modules/FollowTheScience/FollowTheScience.es.js +21 -2
  77. package/dist/modules/OptimalHealth/OptimalHealth.cjs.js +1 -1
  78. package/dist/modules/OptimalHealth/OptimalHealth.es.js +6 -6
  79. package/dist/modules/OptimalHealth/components/ClockImages/ClockImages.cjs.js +1 -1
  80. package/dist/modules/OptimalHealth/components/ClockImages/ClockImages.es.js +53 -31
  81. package/dist/modules/OptimalHealth/components/ClockImages/clockImages.module.css.cjs.js +1 -1
  82. package/dist/modules/OptimalHealth/components/ClockImages/clockImages.module.css.es.js +25 -5
  83. package/dist/modules/OptimalHealth/optimalHealth.module.css.cjs.js +1 -1
  84. package/dist/modules/OptimalHealth/optimalHealth.module.css.es.js +17 -15
  85. package/dist/modules/OurProcess/OurProcess.cjs.js +1 -1
  86. package/dist/modules/OurProcess/OurProcess.d.ts +3 -2
  87. package/dist/modules/OurProcess/OurProcess.es.js +17 -8
  88. package/dist/modules/PairedProducts/PairedProducts.cjs.js +1 -0
  89. package/dist/modules/PairedProducts/PairedProducts.d.ts +12 -0
  90. package/dist/modules/PairedProducts/PairedProducts.es.js +17 -0
  91. package/dist/modules/PairedProducts/index.d.ts +1 -0
  92. package/dist/modules/PairedProducts/pairedProducts.module.css.cjs.js +1 -0
  93. package/dist/modules/PairedProducts/pairedProducts.module.css.es.js +17 -0
  94. package/dist/modules/ProductsDisplay/ProductsDisplay.cjs.js +1 -1
  95. package/dist/modules/ProductsDisplay/ProductsDisplay.d.ts +1 -1
  96. package/dist/modules/ProductsDisplay/ProductsDisplay.es.js +1 -1
  97. package/dist/modules/ProductsDisplay/types.d.ts +1 -1
  98. package/dist/modules/TypesOfTests/TypesOfTests.cjs.js +1 -0
  99. package/dist/modules/TypesOfTests/TypesOfTests.d.ts +10 -0
  100. package/dist/modules/TypesOfTests/TypesOfTests.es.js +106 -0
  101. package/dist/modules/TypesOfTests/index.d.ts +1 -0
  102. package/dist/modules/TypesOfTests/types.d.ts +8 -0
  103. package/dist/modules/TypesOfTests/typesOfTests.module.css.cjs.js +1 -0
  104. package/dist/modules/TypesOfTests/typesOfTests.module.css.es.js +31 -0
  105. package/dist/modules/YourProtocol/YourProtocol.es.js +19 -2
  106. package/dist/modules/YourProtocol/components/ProtocolTags/ProtocolTags.es.js +18 -5
  107. package/dist/node_modules/gsap/CSSPlugin.cjs.js +8 -0
  108. package/dist/node_modules/gsap/CSSPlugin.es.js +423 -0
  109. package/dist/node_modules/gsap/Observer.cjs.js +8 -0
  110. package/dist/node_modules/gsap/Observer.es.js +242 -0
  111. package/dist/node_modules/gsap/ScrollTrigger.cjs.js +8 -0
  112. package/dist/node_modules/gsap/ScrollTrigger.es.js +859 -0
  113. package/dist/node_modules/gsap/gsap-core.cjs.js +8 -0
  114. package/dist/node_modules/gsap/gsap-core.es.js +1651 -0
  115. package/dist/node_modules/gsap/index.cjs.js +1 -0
  116. package/dist/node_modules/gsap/index.es.js +13 -0
  117. package/dist/pageComponents/StillHaveQuestions/StillHaveQuestions.d.ts +1 -0
  118. package/dist/pageComponents/StillHaveQuestions/index.d.ts +1 -0
  119. package/dist/utils/useIsMobile.cjs.js +1 -0
  120. package/dist/utils/useIsMobile.d.ts +1 -0
  121. package/dist/utils/useIsMobile.es.js +12 -0
  122. package/package.json +44 -4
  123. package/dist/components/ComplexTooltip/complexTooltip.module.css.cjs.js +0 -1
  124. package/dist/components/ComplexTooltip/complexTooltip.module.css.es.js +0 -17
  125. package/dist/modules/OptimalHealth/components/ClockImages/hooks.cjs.js +0 -1
  126. package/dist/modules/OptimalHealth/components/ClockImages/hooks.es.js +0 -13
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),c=require("../../components/HighlightedTitle/HighlightedTitle.cjs.js"),o=require("./components/BenefitTag/BenefitTag.cjs.js"),m=require("./components/BenefitItem/BenefitItem.cjs.js"),u=require("../../components/Typography/Typography.cjs.js"),t=require("./benefits.module.css.cjs.js"),g=({label:s,title:l,image:r,benefits:n,tags:d})=>e.jsxs("div",{className:t.default.root,children:[e.jsxs("div",{className:t.default.header,children:[e.jsx(u.Typography,{defaultVariant:"labelMd",mobileVariant:"labelSm",emphasis:!0,className:t.default.label,children:s}),e.jsx(c.HighlightedTitle,{title:l,defaultVariant:"displayMd",mobileVariant:"headingLg"})]}),e.jsxs("div",{className:t.default.content,children:[e.jsxs("div",{className:t.default.imageWrapper,children:[e.jsx("img",{src:r,alt:"image",className:t.default.image}),d.map((i,a)=>e.jsx(o.BenefitTag,{text:i,className:t.default[`tag${a+1}`]},a))]}),e.jsx("div",{className:t.default.benefits,children:n.map((i,a)=>e.jsx(m.BenefitItem,{index:a+1,title:i.title,description:i.description},a))})]})]});exports.Benefits=g;
@@ -0,0 +1,14 @@
1
+ import { ReactNode } from 'react';
2
+
3
+ type Props = {
4
+ label: string;
5
+ title: ReactNode;
6
+ image: string;
7
+ benefits: Array<{
8
+ title: string;
9
+ description: string;
10
+ }>;
11
+ tags: Array<string>;
12
+ };
13
+ export declare const Benefits: ({ label, title, image, benefits, tags }: Props) => import("react/jsx-runtime").JSX.Element;
14
+ export {};
@@ -0,0 +1,30 @@
1
+ import { jsxs as r, jsx as a } from "react/jsx-runtime";
2
+ import { HighlightedTitle as c } from "../../components/HighlightedTitle/HighlightedTitle.es.js";
3
+ import { BenefitTag as n } from "./components/BenefitTag/BenefitTag.es.js";
4
+ import { BenefitItem as p } from "./components/BenefitItem/BenefitItem.es.js";
5
+ import { Typography as h } from "../../components/Typography/Typography.es.js";
6
+ import e from "./benefits.module.css.es.js";
7
+ const y = ({ label: l, title: m, image: s, benefits: o, tags: d }) => /* @__PURE__ */ r("div", { className: e.root, children: [
8
+ /* @__PURE__ */ r("div", { className: e.header, children: [
9
+ /* @__PURE__ */ a(h, { defaultVariant: "labelMd", mobileVariant: "labelSm", emphasis: !0, className: e.label, children: l }),
10
+ /* @__PURE__ */ a(c, { title: m, defaultVariant: "displayMd", mobileVariant: "headingLg" })
11
+ ] }),
12
+ /* @__PURE__ */ r("div", { className: e.content, children: [
13
+ /* @__PURE__ */ r("div", { className: e.imageWrapper, children: [
14
+ /* @__PURE__ */ a("img", { src: s, alt: "image", className: e.image }),
15
+ d.map((t, i) => /* @__PURE__ */ a(n, { text: t, className: e[`tag${i + 1}`] }, i))
16
+ ] }),
17
+ /* @__PURE__ */ a("div", { className: e.benefits, children: o.map((t, i) => /* @__PURE__ */ a(
18
+ p,
19
+ {
20
+ index: i + 1,
21
+ title: t.title,
22
+ description: t.description
23
+ },
24
+ i
25
+ )) })
26
+ ] })
27
+ ] });
28
+ export {
29
+ y as Benefits
30
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="benefits-module__root___DiO7c",t="benefits-module__header___wt7M5",_="benefits-module__label___sgWAr",o="benefits-module__content___Q1Nej",a="benefits-module__imageWrapper___Owwd8",n="benefits-module__image___Hq7o5",s="benefits-module__tag1___orgyD",i="benefits-module__tag2___49bdt",l="benefits-module__tag3___TYdET",g="benefits-module__benefits___psqX-",r={root:e,header:t,label:_,content:o,imageWrapper:a,image:n,tag1:s,tag2:i,tag3:l,benefits:g};exports.benefits=g;exports.content=o;exports.default=r;exports.header=t;exports.image=n;exports.imageWrapper=a;exports.label=_;exports.root=e;exports.tag1=s;exports.tag2=i;exports.tag3=l;
@@ -0,0 +1,25 @@
1
+ const e = "benefits-module__root___DiO7c", _ = "benefits-module__header___wt7M5", t = "benefits-module__label___sgWAr", o = "benefits-module__content___Q1Nej", n = "benefits-module__imageWrapper___Owwd8", s = "benefits-module__image___Hq7o5", a = "benefits-module__tag1___orgyD", i = "benefits-module__tag2___49bdt", l = "benefits-module__tag3___TYdET", b = "benefits-module__benefits___psqX-", d = {
2
+ root: e,
3
+ header: _,
4
+ label: t,
5
+ content: o,
6
+ imageWrapper: n,
7
+ image: s,
8
+ tag1: a,
9
+ tag2: i,
10
+ tag3: l,
11
+ benefits: b
12
+ };
13
+ export {
14
+ b as benefits,
15
+ o as content,
16
+ d as default,
17
+ _ as header,
18
+ s as image,
19
+ n as imageWrapper,
20
+ t as label,
21
+ e as root,
22
+ a as tag1,
23
+ i as tag2,
24
+ l as tag3
25
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),t=require("../../../../components/Typography/Typography.cjs.js"),a=require("./benefitItem.module.css.cjs.js"),l=({index:i,title:n,description:r})=>e.jsxs("div",{className:a.default.benefit,children:[e.jsx(t.Typography,{defaultVariant:"labelXl",emphasis:!0,className:a.default.benefitIndex,children:`(0${i})`}),e.jsxs("div",{className:a.default.benefitDetails,children:[e.jsx(t.Typography,{defaultVariant:"headingLg",mobileVariant:"headingXs",className:a.default.benefitTitle,children:n}),e.jsx(t.Typography,{defaultVariant:"bodyMd",mobileVariant:"bodySm",className:a.default.benefitDesc,children:r})]})]});exports.BenefitItem=l;
@@ -0,0 +1,7 @@
1
+ type Props = {
2
+ index: number;
3
+ title: string;
4
+ description: string;
5
+ };
6
+ export declare const BenefitItem: ({ index, title, description }: Props) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,13 @@
1
+ import { jsxs as t, jsx as a } from "react/jsx-runtime";
2
+ import { Typography as i } from "../../../../components/Typography/Typography.es.js";
3
+ import e from "./benefitItem.module.css.es.js";
4
+ const o = ({ index: l, title: n, description: r }) => /* @__PURE__ */ t("div", { className: e.benefit, children: [
5
+ /* @__PURE__ */ a(i, { defaultVariant: "labelXl", emphasis: !0, className: e.benefitIndex, children: `(0${l})` }),
6
+ /* @__PURE__ */ t("div", { className: e.benefitDetails, children: [
7
+ /* @__PURE__ */ a(i, { defaultVariant: "headingLg", mobileVariant: "headingXs", className: e.benefitTitle, children: n }),
8
+ /* @__PURE__ */ a(i, { defaultVariant: "bodyMd", mobileVariant: "bodySm", className: e.benefitDesc, children: r })
9
+ ] })
10
+ ] });
11
+ export {
12
+ o as BenefitItem
13
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="benefitItem-module__benefit___yL87M",t="benefitItem-module__benefitIndex___I0-tr",n="benefitItem-module__benefitDetails___nw6dI",i={benefit:e,benefitIndex:t,benefitDetails:n};exports.benefit=e;exports.benefitDetails=n;exports.benefitIndex=t;exports.default=i;
@@ -0,0 +1,11 @@
1
+ const e = "benefitItem-module__benefit___yL87M", t = "benefitItem-module__benefitIndex___I0-tr", n = "benefitItem-module__benefitDetails___nw6dI", i = {
2
+ benefit: e,
3
+ benefitIndex: t,
4
+ benefitDetails: n
5
+ };
6
+ export {
7
+ e as benefit,
8
+ n as benefitDetails,
9
+ t as benefitIndex,
10
+ i as default
11
+ };
@@ -0,0 +1 @@
1
+ export { BenefitItem } from './BenefitItem';
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),r=require("./benefitTag.module.css.cjs.js"),n=require("../../../../components/Typography/Typography.cjs.js"),i=require("../../../../utils/cn/cn.cjs.js"),o=({text:t,className:a})=>e.jsx("div",{className:i.cn(r.default.root,a),children:e.jsx(n.Typography,{emphasis:!0,defaultVariant:"labelLg",mobileVariant:"labelSm",className:r.default.benefitTag,children:t})});exports.BenefitTag=o;
@@ -0,0 +1,6 @@
1
+ type Props = {
2
+ text: string;
3
+ className: string;
4
+ };
5
+ export declare const BenefitTag: ({ text, className }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import e from "./benefitTag.module.css.es.js";
3
+ import { Typography as o } from "../../../../components/Typography/Typography.es.js";
4
+ import { cn as i } from "../../../../utils/cn/cn.es.js";
5
+ const p = ({ text: a, className: t }) => /* @__PURE__ */ r("div", { className: i(e.root, t), children: /* @__PURE__ */ r(o, { emphasis: !0, defaultVariant: "labelLg", mobileVariant: "labelSm", className: e.benefitTag, children: a }) });
6
+ export {
7
+ p as BenefitTag
8
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="benefitTag-module__root___8-WMf",t="benefitTag-module__benefitTag___9R-qj",o={root:e,benefitTag:t};exports.benefitTag=t;exports.default=o;exports.root=e;
@@ -0,0 +1,9 @@
1
+ const e = "benefitTag-module__root___8-WMf", t = "benefitTag-module__benefitTag___9R-qj", o = {
2
+ root: e,
3
+ benefitTag: t
4
+ };
5
+ export {
6
+ t as benefitTag,
7
+ o as default,
8
+ e as root
9
+ };
@@ -0,0 +1 @@
1
+ export { BenefitTag } from './BenefitTag';
@@ -0,0 +1,2 @@
1
+ export { BenefitTag } from './BenefitTag';
2
+ export { BenefitItem } from './BenefitItem';
@@ -0,0 +1 @@
1
+ export { Benefits } from './Benefits';
@@ -0,0 +1,3 @@
1
+ import { CompareView } from './types';
2
+
3
+ export declare const Compare: ({ label, title, leftElement, rightElement }: CompareView) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export { Compare } from './Compare';
@@ -0,0 +1,9 @@
1
+ import { ReactNode } from 'react';
2
+ import { PricingElementView } from '../../components/Pricing';
3
+
4
+ export type CompareView = {
5
+ label?: string;
6
+ title: ReactNode;
7
+ leftElement: PricingElementView;
8
+ rightElement: PricingElementView;
9
+ };
@@ -45,10 +45,17 @@ const T = ({ title: p, description: o, comparison: r }) => /* @__PURE__ */ s("di
45
45
  l
46
46
  )),
47
47
  r.rows.map((l, n) => /* @__PURE__ */ s(g, { children: [
48
- /* @__PURE__ */ a("div", { className: t(e.cell, e.cellFeature, e.stickyCell), children: /* @__PURE__ */ s("div", { className: e.featureContent, children: [
49
- /* @__PURE__ */ a(m, { defaultVariant: "bodyXl", weight: "medium", children: l.feature }),
50
- l.description && /* @__PURE__ */ a(m, { defaultVariant: "bodyXl", className: e.featureDescription, children: l.description })
51
- ] }) }, `feature-${n}`),
48
+ /* @__PURE__ */ a(
49
+ "div",
50
+ {
51
+ className: t(e.cell, e.cellFeature, e.stickyCell),
52
+ children: /* @__PURE__ */ s("div", { className: e.featureContent, children: [
53
+ /* @__PURE__ */ a(m, { defaultVariant: "bodyXl", weight: "medium", children: l.feature }),
54
+ l.description && /* @__PURE__ */ a(m, { defaultVariant: "bodyXl", className: e.featureDescription, children: l.description })
55
+ ] })
56
+ },
57
+ `feature-${n}`
58
+ ),
52
59
  r.headers.map((v, d) => {
53
60
  const i = l.values[d];
54
61
  return /* @__PURE__ */ s(
@@ -66,7 +73,15 @@ const T = ({ title: p, description: o, comparison: r }) => /* @__PURE__ */ s("di
66
73
  children: /* @__PURE__ */ a(u, { name: i.value ? c.CHECK : c.CLOSE })
67
74
  }
68
75
  ),
69
- (i == null ? void 0 : i.type) === "string" && /* @__PURE__ */ a(m, { defaultVariant: "bodyXl", weight: "medium", className: e.stringValue, children: i.value })
76
+ (i == null ? void 0 : i.type) === "string" && /* @__PURE__ */ a(
77
+ m,
78
+ {
79
+ defaultVariant: "bodyXl",
80
+ weight: "medium",
81
+ className: e.stringValue,
82
+ children: i.value
83
+ }
84
+ )
70
85
  ]
71
86
  },
72
87
  `value-${n}-${d}`
@@ -18,11 +18,20 @@ function c({ media: r }) {
18
18
  )) });
19
19
  }
20
20
  function u({ quote: r }) {
21
- return /* @__PURE__ */ a("div", { className: e.quoteFeaturedInBlock, children: /* @__PURE__ */ l(i, { as: "p", defaultVariant: "headingSm", mobileVariant: "headingXxs", className: e.quoteFeaturedInText, children: [
22
- "“",
23
- r,
24
- ""
25
- ] }) });
21
+ return /* @__PURE__ */ a("div", { className: e.quoteFeaturedInBlock, children: /* @__PURE__ */ l(
22
+ i,
23
+ {
24
+ as: "p",
25
+ defaultVariant: "headingSm",
26
+ mobileVariant: "headingXxs",
27
+ className: e.quoteFeaturedInText,
28
+ children: [
29
+ "“",
30
+ r,
31
+ "”"
32
+ ]
33
+ }
34
+ ) });
26
35
  }
27
36
  function p({ button_label: r }) {
28
37
  return /* @__PURE__ */ a("a", { href: "https://app.gethealthspan.com", className: e.ctaFeaturedIn, children: /* @__PURE__ */ a("p", { className: e.ctaFeaturedInText, children: r }) });
@@ -7,7 +7,15 @@ import a from "./featuresGallery.module.css.es.js";
7
7
  const p = ({ label: t, url: l }) => /* @__PURE__ */ e("a", { href: l, className: a.label, children: /* @__PURE__ */ e(o, { defaultVariant: "labelMd", emphasis: !0, mobileVariant: "labelSm", weight: "regular", children: t }) }), v = ({ title: t, description: l, features: s, labels: d }) => /* @__PURE__ */ i("section", { className: a.root, children: [
8
8
  /* @__PURE__ */ i("div", { className: a.container, children: [
9
9
  /* @__PURE__ */ i("div", { className: a.header, children: [
10
- /* @__PURE__ */ e(c, { title: t, className: a.title, defaultVariant: "displayMd", mobileVariant: "headingXl" }),
10
+ /* @__PURE__ */ e(
11
+ c,
12
+ {
13
+ title: t,
14
+ className: a.title,
15
+ defaultVariant: "displayMd",
16
+ mobileVariant: "headingXl"
17
+ }
18
+ ),
11
19
  l && /* @__PURE__ */ e(o, { as: "p", defaultVariant: "bodyLg", mobileVariant: "bodySm", children: l })
12
20
  ] }),
13
21
  /* @__PURE__ */ i("div", { className: a.features, children: [
@@ -7,23 +7,38 @@ import a from "./FeatureGrid.module.css.es.js";
7
7
  const s = {
8
8
  primary: { default: "headingXl", mobile: "headingXs" },
9
9
  secondary: { default: "headingSm", mobile: "headingXxs" }
10
- }, R = ({ feature: m, className: n, index: t, type: i }) => /* @__PURE__ */ r("a", { className: c(a.root, a[i], n), style: { backgroundImage: `url("${m.image}")` }, href: m.url, children: [
11
- /* @__PURE__ */ e("div", { className: a.smoke, "data-smoke": t % 3 }),
12
- /* @__PURE__ */ r("div", { className: a.content, children: [
13
- /* @__PURE__ */ e(
14
- d,
15
- {
16
- as: "h3",
17
- defaultVariant: s[i].default,
18
- mobileVariant: s[i].mobile,
19
- className: a.label,
20
- children: m.label
21
- }
22
- ),
23
- /* @__PURE__ */ e("div", { className: a.desktop, children: /* @__PURE__ */ e(l, { iconName: o.ARROW_FORWARD, variant: "muted-invert", size: i === "primary" ? "lg" : "md" }) }),
24
- /* @__PURE__ */ e("div", { className: a.mobile, children: /* @__PURE__ */ e(l, { iconName: o.ARROW_FORWARD, variant: "muted-invert", size: "sm" }) })
25
- ] })
26
- ] });
10
+ }, R = ({ feature: m, className: n, index: t, type: i }) => /* @__PURE__ */ r(
11
+ "a",
12
+ {
13
+ className: c(a.root, a[i], n),
14
+ style: { backgroundImage: `url("${m.image}")` },
15
+ href: m.url,
16
+ children: [
17
+ /* @__PURE__ */ e("div", { className: a.smoke, "data-smoke": t % 3 }),
18
+ /* @__PURE__ */ r("div", { className: a.content, children: [
19
+ /* @__PURE__ */ e(
20
+ d,
21
+ {
22
+ as: "h3",
23
+ defaultVariant: s[i].default,
24
+ mobileVariant: s[i].mobile,
25
+ className: a.label,
26
+ children: m.label
27
+ }
28
+ ),
29
+ /* @__PURE__ */ e("div", { className: a.desktop, children: /* @__PURE__ */ e(
30
+ l,
31
+ {
32
+ iconName: o.ARROW_FORWARD,
33
+ variant: "muted-invert",
34
+ size: i === "primary" ? "lg" : "md"
35
+ }
36
+ ) }),
37
+ /* @__PURE__ */ e("div", { className: a.mobile, children: /* @__PURE__ */ e(l, { iconName: o.ARROW_FORWARD, variant: "muted-invert", size: "sm" }) })
38
+ ] })
39
+ ]
40
+ }
41
+ );
27
42
  export {
28
43
  R as FeatureGrid
29
44
  };
@@ -14,7 +14,16 @@ import { useSwiper as C } from "../../utils/useSwiper/useSwiper.es.js";
14
14
  import i from "./followTheScience.module.css.es.js";
15
15
  const E = [u];
16
16
  function L({ labelText: a, benefits: c }) {
17
- const { activeIndex: r, setIsEnd: m, isEnd: t, handleSlideChange: p, handlePrevClick: s, handleNextClick: n, onSwiperInit: h, handleSwiperResize: f } = C();
17
+ const {
18
+ activeIndex: r,
19
+ setIsEnd: m,
20
+ isEnd: t,
21
+ handleSlideChange: p,
22
+ handlePrevClick: s,
23
+ handleNextClick: n,
24
+ onSwiperInit: h,
25
+ handleSwiperResize: f
26
+ } = C();
18
27
  return /* @__PURE__ */ l("div", { className: i.container, children: [
19
28
  /* @__PURE__ */ l("div", { className: i.heading, children: [
20
29
  /* @__PURE__ */ e(R, { color: "white", size: "lg", children: a }),
@@ -48,7 +57,17 @@ function L({ labelText: a, benefits: c }) {
48
57
  {
49
58
  title: o.title,
50
59
  description: o.description,
51
- button: /* @__PURE__ */ e(k, { as: "a", size: "sm", color: "white", suffixIcon: N.ARROW_FORWARD, href: o.link, children: "READ THE STUDY" })
60
+ button: /* @__PURE__ */ e(
61
+ k,
62
+ {
63
+ as: "a",
64
+ size: "sm",
65
+ color: "white",
66
+ suffixIcon: N.ARROW_FORWARD,
67
+ href: o.link,
68
+ children: "READ THE STUDY"
69
+ }
70
+ )
52
71
  }
53
72
  ) }, S))
54
73
  }
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../../components/Button/Button.cjs.js"),o=require("../../components/HighlightedTitle/HighlightedTitle.cjs.js"),c=require("../../components/Typography/Typography.cjs.js"),s=require("../../utils/cn/cn.cjs.js"),d=require("./components/ClockImages/ClockImages.cjs.js"),t=require("./optimalHealth.module.css.cjs.js"),u=({title:l,description:r,link:a,images:n})=>e.jsx("section",{className:t.default.root,children:e.jsxs("div",{className:t.default.container,children:[e.jsx(d.ClockImages,{images:n}),e.jsxs("div",{className:t.default.content,children:[e.jsx(o.HighlightedTitle,{title:l,className:t.default.title,defaultVariant:"displaySm",mobileVariant:"headingLg"}),e.jsx(c.Typography,{as:"p",defaultVariant:"bodyLg",mobileVariant:"bodySm",className:t.default.description,children:r}),e.jsx("div",{className:s.cn(t.default.actions,t.default.desktop),children:e.jsx(i.Button,{as:"a",variant:"primary",size:"lg",href:a,children:"LEARN MORE"})}),e.jsx("div",{className:s.cn(t.default.actions,t.default.mobile),children:e.jsx(i.Button,{as:"a",variant:"primary",size:"sm",href:a,children:"LEARN MORE"})})]})]})});exports.OptimalHealth=u;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../../components/Button/Button.cjs.js"),o=require("../../components/HighlightedTitle/HighlightedTitle.cjs.js"),c=require("../../components/Typography/Typography.cjs.js"),s=require("../../utils/cn/cn.cjs.js"),d=require("./components/ClockImages/ClockImages.cjs.js"),t=require("./optimalHealth.module.css.cjs.js"),u=({title:l,description:r,link:a,images:n})=>e.jsx("section",{className:t.default.root,children:e.jsx("div",{className:t.default.container,children:e.jsxs("div",{className:t.default.wrapper,children:[e.jsx(d.ClockImages,{images:n}),e.jsxs("div",{className:t.default.content,children:[e.jsx(o.HighlightedTitle,{title:l,className:t.default.title,defaultVariant:"displaySm",mobileVariant:"headingLg"}),e.jsx(c.Typography,{as:"p",defaultVariant:"bodyLg",mobileVariant:"bodySm",className:t.default.description,children:r}),e.jsx("div",{className:s.cn(t.default.actions,t.default.desktop),children:e.jsx(i.Button,{as:"a",variant:"primary",size:"lg",href:a,children:"LEARN MORE"})}),e.jsx("div",{className:s.cn(t.default.actions,t.default.mobile),children:e.jsx(i.Button,{as:"a",variant:"primary",size:"sm",href:a,children:"LEARN MORE"})})]})]})})});exports.OptimalHealth=u;
@@ -2,18 +2,18 @@ import { jsx as i, jsxs as e } from "react/jsx-runtime";
2
2
  import { Button as t } from "../../components/Button/Button.es.js";
3
3
  import { HighlightedTitle as n } from "../../components/HighlightedTitle/HighlightedTitle.es.js";
4
4
  import { Typography as c } from "../../components/Typography/Typography.es.js";
5
- import { cn as o } from "../../utils/cn/cn.es.js";
5
+ import { cn as s } from "../../utils/cn/cn.es.js";
6
6
  import { ClockImages as d } from "./components/ClockImages/ClockImages.es.js";
7
7
  import a from "./optimalHealth.module.css.es.js";
8
- const b = ({ title: s, description: m, link: r, images: l }) => /* @__PURE__ */ i("section", { className: a.root, children: /* @__PURE__ */ e("div", { className: a.container, children: [
8
+ const b = ({ title: o, description: m, link: r, images: l }) => /* @__PURE__ */ i("section", { className: a.root, children: /* @__PURE__ */ i("div", { className: a.container, children: /* @__PURE__ */ e("div", { className: a.wrapper, children: [
9
9
  /* @__PURE__ */ i(d, { images: l }),
10
10
  /* @__PURE__ */ e("div", { className: a.content, children: [
11
- /* @__PURE__ */ i(n, { title: s, className: a.title, defaultVariant: "displaySm", mobileVariant: "headingLg" }),
11
+ /* @__PURE__ */ i(n, { title: o, className: a.title, defaultVariant: "displaySm", mobileVariant: "headingLg" }),
12
12
  /* @__PURE__ */ i(c, { as: "p", defaultVariant: "bodyLg", mobileVariant: "bodySm", className: a.description, children: m }),
13
- /* @__PURE__ */ i("div", { className: o(a.actions, a.desktop), children: /* @__PURE__ */ i(t, { as: "a", variant: "primary", size: "lg", href: r, children: "LEARN MORE" }) }),
14
- /* @__PURE__ */ i("div", { className: o(a.actions, a.mobile), children: /* @__PURE__ */ i(t, { as: "a", variant: "primary", size: "sm", href: r, children: "LEARN MORE" }) })
13
+ /* @__PURE__ */ i("div", { className: s(a.actions, a.desktop), children: /* @__PURE__ */ i(t, { as: "a", variant: "primary", size: "lg", href: r, children: "LEARN MORE" }) }),
14
+ /* @__PURE__ */ i("div", { className: s(a.actions, a.mobile), children: /* @__PURE__ */ i(t, { as: "a", variant: "primary", size: "sm", href: r, children: "LEARN MORE" }) })
15
15
  ] })
16
- ] }) });
16
+ ] }) }) });
17
17
  export {
18
18
  b as OptimalHealth
19
19
  };
@@ -1 +1 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("react/jsx-runtime"),n=require("../../../../utils/cn/cn.cjs.js"),o=require("./hooks.cjs.js"),e=require("./clockImages.module.css.cjs.js"),I=10,d=2*Math.PI/I,i=-Math.PI/2,q=[{key:"smallSquareImage1",className:e.default.smallSquareImage},{key:"rectImage2",className:e.default.rectImage},{key:"smallSquareImage3",className:e.default.smallSquareImage},{key:"largeSquareImage4",className:e.default.largeSquareImage},{key:"rectImage5",className:e.default.rectImage},{key:"smallSquareImage6",className:e.default.smallSquareImage},{key:"rectImage7",className:e.default.rectImage},{key:"smallSquareImage8",className:e.default.smallSquareImage},{key:"rectImage9",className:e.default.rectImage},{key:"largeSquareImage10",className:e.default.largeSquareImage}],N=({images:r})=>{const s=o.useResponsiveRadius();return l.jsx("div",{className:e.default.root,children:q.map(({key:a,className:m},c)=>{const t=i+c*d,u=s*Math.cos(t),g=s*Math.sin(t);return l.jsx("img",{src:r[a],className:n.cn(e.default.image,m),style:{transform:`translate(-50%, -50%) translate(${u}px, ${g}px)`},alt:a},a)})})};exports.ClockImages=N;
1
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("react/jsx-runtime"),g=require("../../../../node_modules/gsap/index.cjs.js"),y=require("../../../../node_modules/gsap/ScrollTrigger.cjs.js"),e=require("./clockImages.module.css.cjs.js"),f=require("../../../../utils/cn/cn.cjs.js"),q=require("react");g.gsap.registerPlugin(y.ScrollTrigger);const s=[{key:"smallSquareImage1",className:e.default.smallSquareImage,to:{x:100,y:60}},{key:"rectImage2",className:e.default.rectImage,to:{x:70,y:70}},{key:"smallSquareImage3",className:e.default.smallSquareImage,to:{x:40,y:60}},{key:"largeSquareImage4",className:e.default.largeSquareImage,to:{x:-110,y:55}},{key:"rectImage5",className:e.default.rectImage,to:{x:-150,y:69}},{key:"smallSquareImage6",className:e.default.smallSquareImage,to:{x:-100,y:9}},{key:"rectImage7",className:e.default.rectImage,to:{x:-65,y:-100}},{key:"smallSquareImage8",className:e.default.smallSquareImage,to:{x:50,y:-100}},{key:"rectImage9",className:e.default.rectImage,to:{x:50,y:-50}},{key:"largeSquareImage10",className:e.default.largeSquareImage,to:{x:56,y:13}}],S=({images:n})=>{const t=q.useRef(null),i=a=>{var c,o,m;const r=(c=t.current)==null?void 0:c.querySelector(`[data-ohealth-image-key="${a}"]`);if(!r)return;const d=((o=s.find(l=>l.key===a))==null?void 0:o.to.x)||0,I=((m=s.find(l=>l.key===a))==null?void 0:m.to.y)||0;g.gsap.fromTo(r,{x:0,y:0},{x:d,y:I,duration:5,ease:"power2.out",scrollTrigger:{trigger:t.current,start:"center center",end:"center center",once:!0,scrub:!1,toggleActions:"play none none reverse"}})};return u.jsx("div",{ref:t,className:e.default.root,children:s.map(({key:a,className:r})=>u.jsx("img",{src:n[a],className:f.cn(e.default.image,r,e.default[a]),"data-ohealth-image-key":a,alt:a,onLoad:()=>i(a)},a))})};exports.ClockImages=S;
@@ -1,37 +1,59 @@
1
1
  "use client";
2
- import { jsx as r } from "react/jsx-runtime";
3
- import { cn as o } from "../../../../utils/cn/cn.es.js";
4
- import { useResponsiveRadius as n } from "./hooks.es.js";
5
- import a from "./clockImages.module.css.es.js";
6
- const u = 10, N = 2 * Math.PI / u, S = -Math.PI / 2, i = [
7
- { key: "smallSquareImage1", className: a.smallSquareImage },
8
- { key: "rectImage2", className: a.rectImage },
9
- { key: "smallSquareImage3", className: a.smallSquareImage },
10
- { key: "largeSquareImage4", className: a.largeSquareImage },
11
- { key: "rectImage5", className: a.rectImage },
12
- { key: "smallSquareImage6", className: a.smallSquareImage },
13
- { key: "rectImage7", className: a.rectImage },
14
- { key: "smallSquareImage8", className: a.smallSquareImage },
15
- { key: "rectImage9", className: a.rectImage },
16
- { key: "largeSquareImage10", className: a.largeSquareImage }
17
- ], h = ({ images: t }) => {
18
- const s = n();
19
- return /* @__PURE__ */ r("div", { className: a.root, children: i.map(({ key: e, className: l }, c) => {
20
- const m = S + c * N, g = s * Math.cos(m), I = s * Math.sin(m);
21
- return /* @__PURE__ */ r(
22
- "img",
2
+ import { jsx as g } from "react/jsx-runtime";
3
+ import { gsap as n } from "../../../../node_modules/gsap/index.es.js";
4
+ import { ScrollTrigger as S } from "../../../../node_modules/gsap/ScrollTrigger.es.js";
5
+ import e from "./clockImages.module.css.es.js";
6
+ import { cn as x } from "../../../../utils/cn/cn.es.js";
7
+ import { useRef as f } from "react";
8
+ n.registerPlugin(S);
9
+ const s = [
10
+ { key: "smallSquareImage1", className: e.smallSquareImage, to: { x: 100, y: 60 } },
11
+ { key: "rectImage2", className: e.rectImage, to: { x: 70, y: 70 } },
12
+ { key: "smallSquareImage3", className: e.smallSquareImage, to: { x: 40, y: 60 } },
13
+ { key: "largeSquareImage4", className: e.largeSquareImage, to: { x: -110, y: 55 } },
14
+ { key: "rectImage5", className: e.rectImage, to: { x: -150, y: 69 } },
15
+ { key: "smallSquareImage6", className: e.smallSquareImage, to: { x: -100, y: 9 } },
16
+ { key: "rectImage7", className: e.rectImage, to: { x: -65, y: -100 } },
17
+ { key: "smallSquareImage8", className: e.smallSquareImage, to: { x: 50, y: -100 } },
18
+ { key: "rectImage9", className: e.rectImage, to: { x: 50, y: -50 } },
19
+ { key: "largeSquareImage10", className: e.largeSquareImage, to: { x: 56, y: 13 } }
20
+ ], C = ({ images: i }) => {
21
+ const t = f(null), u = (a) => {
22
+ var o, l, c;
23
+ const r = (o = t.current) == null ? void 0 : o.querySelector(`[data-ohealth-image-key="${a}"]`);
24
+ if (!r) return;
25
+ const I = ((l = s.find((m) => m.key === a)) == null ? void 0 : l.to.x) || 0, y = ((c = s.find((m) => m.key === a)) == null ? void 0 : c.to.y) || 0;
26
+ n.fromTo(
27
+ r,
28
+ { x: 0, y: 0 },
23
29
  {
24
- src: t[e],
25
- className: o(a.image, l),
26
- style: {
27
- transform: `translate(-50%, -50%) translate(${g}px, ${I}px)`
28
- },
29
- alt: e
30
- },
31
- e
30
+ x: I,
31
+ y,
32
+ duration: 5,
33
+ ease: "power2.out",
34
+ scrollTrigger: {
35
+ trigger: t.current,
36
+ start: "center center",
37
+ end: "center center",
38
+ once: !0,
39
+ scrub: !1,
40
+ toggleActions: "play none none reverse"
41
+ }
42
+ }
32
43
  );
33
- }) });
44
+ };
45
+ return /* @__PURE__ */ g("div", { ref: t, className: e.root, children: s.map(({ key: a, className: r }) => /* @__PURE__ */ g(
46
+ "img",
47
+ {
48
+ src: i[a],
49
+ className: x(e.image, r, e[a]),
50
+ "data-ohealth-image-key": a,
51
+ alt: a,
52
+ onLoad: () => u(a)
53
+ },
54
+ a
55
+ )) });
34
56
  };
35
57
  export {
36
- h as ClockImages
58
+ C as ClockImages
37
59
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="clockImages-module__root___EP8LS",a="clockImages-module__image___MtqIw",m="clockImages-module__smallSquareImage___NkpW3",l="clockImages-module__largeSquareImage___mPBhn",o="clockImages-module__rectImage___GMy9G",g={root:e,image:a,smallSquareImage:m,largeSquareImage:l,rectImage:o};exports.default=g;exports.image=a;exports.largeSquareImage=l;exports.rectImage=o;exports.root=e;exports.smallSquareImage=m;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="clockImages-module__root___EP8LS",a="clockImages-module__image___MtqIw",m="clockImages-module__smallSquareImage___NkpW3",l="clockImages-module__largeSquareImage___mPBhn",g="clockImages-module__rectImage___GMy9G",_="clockImages-module__smallSquareImage1___yHzSr",r="clockImages-module__rectImage2___yTVQv",I="clockImages-module__smallSquareImage3___2Ulue",c="clockImages-module__largeSquareImage4___ENR09",o="clockImages-module__rectImage5___Q6nwe",s="clockImages-module__smallSquareImage6___JIgK4",u="clockImages-module__rectImage7___LLPub",t="clockImages-module__smallSquareImage8___hK-yx",S="clockImages-module__rectImage9___FJ8gO",q="clockImages-module__largeSquareImage10___yOvmO",n={root:e,image:a,smallSquareImage:m,largeSquareImage:l,rectImage:g,smallSquareImage1:_,rectImage2:r,smallSquareImage3:I,largeSquareImage4:c,rectImage5:o,smallSquareImage6:s,rectImage7:u,smallSquareImage8:t,rectImage9:S,largeSquareImage10:q};exports.default=n;exports.image=a;exports.largeSquareImage=l;exports.largeSquareImage10=q;exports.largeSquareImage4=c;exports.rectImage=g;exports.rectImage2=r;exports.rectImage5=o;exports.rectImage7=u;exports.rectImage9=S;exports.root=e;exports.smallSquareImage=m;exports.smallSquareImage1=_;exports.smallSquareImage3=I;exports.smallSquareImage6=s;exports.smallSquareImage8=t;
@@ -1,15 +1,35 @@
1
- const e = "clockImages-module__root___EP8LS", a = "clockImages-module__image___MtqIw", m = "clockImages-module__smallSquareImage___NkpW3", _ = "clockImages-module__largeSquareImage___mPBhn", o = "clockImages-module__rectImage___GMy9G", l = {
1
+ const e = "clockImages-module__root___EP8LS", a = "clockImages-module__image___MtqIw", m = "clockImages-module__smallSquareImage___NkpW3", _ = "clockImages-module__largeSquareImage___mPBhn", l = "clockImages-module__rectImage___GMy9G", g = "clockImages-module__smallSquareImage1___yHzSr", c = "clockImages-module__rectImage2___yTVQv", I = "clockImages-module__smallSquareImage3___2Ulue", o = "clockImages-module__largeSquareImage4___ENR09", r = "clockImages-module__rectImage5___Q6nwe", s = "clockImages-module__smallSquareImage6___JIgK4", u = "clockImages-module__rectImage7___LLPub", t = "clockImages-module__smallSquareImage8___hK-yx", S = "clockImages-module__rectImage9___FJ8gO", q = "clockImages-module__largeSquareImage10___yOvmO", n = {
2
2
  root: e,
3
3
  image: a,
4
4
  smallSquareImage: m,
5
5
  largeSquareImage: _,
6
- rectImage: o
6
+ rectImage: l,
7
+ smallSquareImage1: g,
8
+ rectImage2: c,
9
+ smallSquareImage3: I,
10
+ largeSquareImage4: o,
11
+ rectImage5: r,
12
+ smallSquareImage6: s,
13
+ rectImage7: u,
14
+ smallSquareImage8: t,
15
+ rectImage9: S,
16
+ largeSquareImage10: q
7
17
  };
8
18
  export {
9
- l as default,
19
+ n as default,
10
20
  a as image,
11
21
  _ as largeSquareImage,
12
- o as rectImage,
22
+ q as largeSquareImage10,
23
+ o as largeSquareImage4,
24
+ l as rectImage,
25
+ c as rectImage2,
26
+ r as rectImage5,
27
+ u as rectImage7,
28
+ S as rectImage9,
13
29
  e as root,
14
- m as smallSquareImage
30
+ m as smallSquareImage,
31
+ g as smallSquareImage1,
32
+ I as smallSquareImage3,
33
+ s as smallSquareImage6,
34
+ t as smallSquareImage8
15
35
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="optimalHealth-module__root___l-DfB",o="optimalHealth-module__container___Nc-Cv",e="optimalHealth-module__content___5ntd8",_="optimalHealth-module__description___3MlIW",l="optimalHealth-module__actions___IWhyr",n="optimalHealth-module__mobile___8lH1x",i="optimalHealth-module__desktop___Nh1ZJ",c={root:t,container:o,content:e,description:_,actions:l,mobile:n,desktop:i};exports.actions=l;exports.container=o;exports.content=e;exports.default=c;exports.description=_;exports.desktop=i;exports.mobile=n;exports.root=t;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="optimalHealth-module__root___l-DfB",o="optimalHealth-module__wrapper___DdVh-",e="optimalHealth-module__container___Nc-Cv",_="optimalHealth-module__content___5ntd8",l="optimalHealth-module__description___3MlIW",n="optimalHealth-module__actions___IWhyr",a="optimalHealth-module__mobile___8lH1x",i="optimalHealth-module__desktop___Nh1ZJ",c={root:t,wrapper:o,container:e,content:_,description:l,actions:n,mobile:a,desktop:i};exports.actions=n;exports.container=e;exports.content=_;exports.default=c;exports.description=l;exports.desktop=i;exports.mobile=a;exports.root=t;exports.wrapper=o;
@@ -1,19 +1,21 @@
1
- const o = "optimalHealth-module__root___l-DfB", t = "optimalHealth-module__container___Nc-Cv", _ = "optimalHealth-module__content___5ntd8", e = "optimalHealth-module__description___3MlIW", l = "optimalHealth-module__actions___IWhyr", n = "optimalHealth-module__mobile___8lH1x", a = "optimalHealth-module__desktop___Nh1ZJ", i = {
1
+ const o = "optimalHealth-module__root___l-DfB", t = "optimalHealth-module__wrapper___DdVh-", _ = "optimalHealth-module__container___Nc-Cv", e = "optimalHealth-module__content___5ntd8", l = "optimalHealth-module__description___3MlIW", n = "optimalHealth-module__actions___IWhyr", a = "optimalHealth-module__mobile___8lH1x", i = "optimalHealth-module__desktop___Nh1ZJ", c = {
2
2
  root: o,
3
- container: t,
4
- content: _,
5
- description: e,
6
- actions: l,
7
- mobile: n,
8
- desktop: a
3
+ wrapper: t,
4
+ container: _,
5
+ content: e,
6
+ description: l,
7
+ actions: n,
8
+ mobile: a,
9
+ desktop: i
9
10
  };
10
11
  export {
11
- l as actions,
12
- t as container,
13
- _ as content,
14
- i as default,
15
- e as description,
16
- a as desktop,
17
- n as mobile,
18
- o as root
12
+ n as actions,
13
+ _ as container,
14
+ e as content,
15
+ c as default,
16
+ l as description,
17
+ i as desktop,
18
+ a as mobile,
19
+ o as root,
20
+ t as wrapper
19
21
  };