@npm_leadtech/legal-contracts-ui 0.103.0 → 0.103.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -64,12 +64,12 @@ export interface GuidelinesSectionProps {
64
64
  guidelineCards: Array<{
65
65
  title: string;
66
66
  image: ReactNode;
67
- content: ReactNode;
67
+ content: string;
68
68
  }>;
69
69
  footerCard: {
70
70
  title: string;
71
71
  image: ReactNode;
72
- content: ReactNode;
72
+ content: string;
73
73
  cta: ButtonProps;
74
74
  };
75
75
  }
@@ -94,7 +94,7 @@ export interface Jumbotron2Props {
94
94
 
95
95
  export interface MissionSectionProps {
96
96
  title: string;
97
- children: ReactNode;
97
+ body: string;
98
98
  image: ReactNode;
99
99
  }
100
100
 
@@ -121,6 +121,7 @@ export interface SectionHeadingProps {
121
121
  align?: 'start' | 'center';
122
122
  titleClass?: string;
123
123
  className?: string;
124
+ hasMaxWidth?: boolean;
124
125
  }
125
126
 
126
127
  export interface StorylineProps {
@@ -141,7 +142,7 @@ export interface TrustPilotSectionProps {
141
142
 
142
143
  export interface ValuesSectionProps {
143
144
  title: string;
144
- children: ReactNode;
145
+ body: string;
145
146
  image: ReactNode;
146
147
  }
147
148
 
@@ -1,16 +1,16 @@
1
- import { jsxs as S, jsx as o } from "react/jsx-runtime";
2
- import { MissionSection as u } from "./MissionSection.js";
3
- import { ValuesSection as x } from "./ValuesSection.js";
1
+ import { jsxs as x, jsx as o } from "react/jsx-runtime";
2
+ import { MissionSection as S } from "./MissionSection.js";
3
+ import { ValuesSection as u } from "./ValuesSection.js";
4
4
  import { Storyline as b } from "./Storyline.js";
5
- import { WeHelpSection as d } from "./WeHelpSection.js";
6
- import { GuidelinesSection as j } from "./GuidelinesSection.js";
7
- import { ExpertsSection as y } from "./ExpertsSection.js";
8
- import { TrustPilotSection as C } from "./TrustPilotSection.js";
9
- import { PartnersSection as N } from "./PartnersSection.js";
10
- import { CtaSection as P } from "./CtaSection.js";
11
- import { ContactUsSection as T } from "./ContactUsSection.js";
12
- import { Jumbotron2 as U } from "./Jumbotron2.js";
13
- import { IntroSection as g } from "./IntroSection.js";
5
+ import { WeHelpSection as y } from "./WeHelpSection.js";
6
+ import { GuidelinesSection as N } from "./GuidelinesSection.js";
7
+ import { ExpertsSection as d } from "./ExpertsSection.js";
8
+ import { TrustPilotSection as g } from "./TrustPilotSection.js";
9
+ import { PartnersSection as j } from "./PartnersSection.js";
10
+ import { CtaSection as w } from "./CtaSection.js";
11
+ import { ContactUsSection as C } from "./ContactUsSection.js";
12
+ import { Jumbotron2 as P } from "./Jumbotron2.js";
13
+ import { IntroSection as T } from "./IntroSection.js";
14
14
  const v = ({
15
15
  jumbotron: t,
16
16
  intro: r,
@@ -18,25 +18,25 @@ const v = ({
18
18
  coreValues: i,
19
19
  storyline: e,
20
20
  howWeHelp: n,
21
- guidelines: p,
22
- experts: f,
21
+ guidelines: l,
22
+ experts: p,
23
23
  trustPilot: s,
24
- partners: c,
25
- cta: l,
24
+ partners: f,
25
+ cta: c,
26
26
  contactUs: a
27
- }) => /* @__PURE__ */ S("main", { className: "mx-auto flex w-full flex-1 flex-col text-neutral-800", children: [
28
- /* @__PURE__ */ o(U, { ...t }),
29
- /* @__PURE__ */ o(g, { ...r, className: "bg-primary-50" }),
30
- /* @__PURE__ */ o(u, { ...m }),
31
- /* @__PURE__ */ o(x, { ...i }),
27
+ }) => /* @__PURE__ */ x("main", { className: "mx-auto flex w-full flex-1 flex-col text-neutral-800", children: [
28
+ /* @__PURE__ */ o(P, { ...t, className: "bg-primary-50 w-full py-4 text-3xl" }),
29
+ /* @__PURE__ */ o(T, { ...r, className: "bg-primary-50" }),
30
+ /* @__PURE__ */ o(S, { ...m }),
31
+ /* @__PURE__ */ o(u, { ...i }),
32
32
  /* @__PURE__ */ o(b, { ...e }),
33
- /* @__PURE__ */ o(d, { ...n }),
34
- /* @__PURE__ */ o(j, { ...p }),
35
- /* @__PURE__ */ o(y, { ...f }),
36
- /* @__PURE__ */ o(C, { ...s }),
37
- /* @__PURE__ */ o(N, { ...c }),
38
- /* @__PURE__ */ o(P, { ...l }),
39
- /* @__PURE__ */ o(T, { ...a })
33
+ /* @__PURE__ */ o(y, { ...n }),
34
+ /* @__PURE__ */ o(N, { ...l }),
35
+ /* @__PURE__ */ o(d, { ...p }),
36
+ /* @__PURE__ */ o(g, { ...s }),
37
+ /* @__PURE__ */ o(j, { ...f }),
38
+ /* @__PURE__ */ o(w, { ...c }),
39
+ /* @__PURE__ */ o(C, { ...a })
40
40
  ] });
41
41
  export {
42
42
  v as AboutUsTemplate
@@ -22,5 +22,6 @@ export interface SectionHeadingProps {
22
22
  align?: 'start' | 'center';
23
23
  titleClass?: string;
24
24
  className?: string;
25
+ hasMaxWidth?: boolean;
25
26
  }
26
27
 
@@ -20,5 +20,6 @@ export interface SectionHeadingProps {
20
20
  align?: 'start' | 'center';
21
21
  titleClass?: string;
22
22
  className?: string;
23
+ hasMaxWidth?: boolean;
23
24
  }
24
25
 
@@ -86,5 +86,6 @@ export interface SectionHeadingProps {
86
86
  align?: 'start' | 'center';
87
87
  titleClass?: string;
88
88
  className?: string;
89
+ hasMaxWidth?: boolean;
89
90
  }
90
91
 
@@ -19,5 +19,6 @@ export interface SectionHeadingProps {
19
19
  align?: 'start' | 'center';
20
20
  titleClass?: string;
21
21
  className?: string;
22
+ hasMaxWidth?: boolean;
22
23
  }
23
24
 
@@ -1,6 +1,6 @@
1
1
  import { jsxs as r, jsx as e } from "react/jsx-runtime";
2
2
  import { Button as c } from "./Button.js";
3
- const p = ({
3
+ const x = ({
4
4
  title: a,
5
5
  paragraph: l,
6
6
  cta: t,
@@ -35,19 +35,19 @@ const p = ({
35
35
  /* @__PURE__ */ e("span", { className: "text-primary-900 text-small font-bold", children: l })
36
36
  ]
37
37
  }
38
- ), u = ({ icon: a, text: l, className: t = "" }) => /* @__PURE__ */ r(
38
+ ), f = ({ icon: a, text: l, className: t = "" }) => /* @__PURE__ */ r(
39
39
  "div",
40
40
  {
41
41
  className: `shadow-small absolute flex items-center justify-center gap-1 rounded-md bg-neutral-50 p-2 ${t}`,
42
42
  children: [
43
43
  /* @__PURE__ */ e("img", { src: a, alt: "", role: "img", className: "h-5 w-5" }),
44
- /* @__PURE__ */ e("span", { className: "text-small text-neutral-500", children: l })
44
+ /* @__PURE__ */ e("span", { className: "text-small text-primary-500", children: l })
45
45
  ]
46
46
  }
47
47
  );
48
48
  export {
49
- u as CtaFeatureTag,
49
+ f as CtaFeatureTag,
50
50
  o as CtaSample,
51
- p as CtaSection,
51
+ x as CtaSection,
52
52
  g as CtaSummarizedTag
53
53
  };
@@ -18,5 +18,6 @@ export interface SectionHeadingProps {
18
18
  align?: 'start' | 'center';
19
19
  titleClass?: string;
20
20
  className?: string;
21
+ hasMaxWidth?: boolean;
21
22
  }
22
23
 
@@ -1,14 +1,14 @@
1
- import { jsx as e, jsxs as l } from "react/jsx-runtime";
1
+ import { jsx as e, jsxs as a } from "react/jsx-runtime";
2
2
  import { SectionHeading as n } from "./SectionHeading.js";
3
- const r = ({ header: i, experts: a }) => a.length === 0 ? null : /* @__PURE__ */ e("section", { className: "bg-primary-50 px-6 pt-12 pb-8 md:pb-12", children: /* @__PURE__ */ l("div", { className: "mx-auto max-w-6xl xl:max-w-7xl", children: [
4
- /* @__PURE__ */ e("div", { className: "mx-auto mb-20 w-11/12 text-center md:w-full", children: /* @__PURE__ */ e(n, { align: "center", ...i }) }),
5
- /* @__PURE__ */ e("div", { className: "mt-8 flex flex-col items-center justify-center gap-8 md:flex-row md:flex-wrap", children: a.map((t) => /* @__PURE__ */ l(
3
+ const r = ({ header: i, experts: l }) => l.length === 0 ? null : /* @__PURE__ */ e("section", { className: "bg-primary-50 px-6 pt-12 pb-8 md:pb-12", children: /* @__PURE__ */ a("div", { className: "mx-auto max-w-6xl", children: [
4
+ /* @__PURE__ */ e("div", { className: "mx-auto mb-20 w-11/12 text-center md:w-full", children: /* @__PURE__ */ e(n, { align: "center", ...i, hasMaxWidth: !1 }) }),
5
+ /* @__PURE__ */ e("div", { className: "mt-8 flex flex-col items-center justify-center gap-10 md:flex-row md:flex-wrap", children: l.map((t) => /* @__PURE__ */ a(
6
6
  "article",
7
7
  {
8
- className: "flex w-80 flex-row items-center justify-start gap-6 rounded-2xl bg-white p-4 shadow-sm lg:w-96",
8
+ className: "flex w-80 flex-row items-center justify-start gap-6 rounded-2xl bg-white p-4 shadow-sm",
9
9
  children: [
10
10
  /* @__PURE__ */ e("div", { className: "min-w-28 shrink-0 [&_img]:h-auto [&_img]:w-full [&_img]:rounded-lg", children: t.image }),
11
- /* @__PURE__ */ l("div", { className: "flex flex-col items-start justify-start", children: [
11
+ /* @__PURE__ */ a("div", { className: "flex flex-col items-start justify-start", children: [
12
12
  /* @__PURE__ */ e("p", { className: "mb-2 w-3/4 min-w-fit font-sans text-lg leading-6 font-bold tracking-tight text-neutral-800", children: t.name }),
13
13
  /* @__PURE__ */ e("p", { className: "font-sans text-base leading-snug font-normal tracking-tight text-neutral-800", children: t.title })
14
14
  ] })
@@ -19,5 +19,6 @@ export interface SectionHeadingProps {
19
19
  align?: 'start' | 'center';
20
20
  titleClass?: string;
21
21
  className?: string;
22
+ hasMaxWidth?: boolean;
22
23
  }
23
24
 
@@ -20,12 +20,12 @@ export declare interface GuidelinesSectionProps {
20
20
  guidelineCards: Array<{
21
21
  title: string;
22
22
  image: ReactNode;
23
- content: ReactNode;
23
+ content: string;
24
24
  }>;
25
25
  footerCard: {
26
26
  title: string;
27
27
  image: ReactNode;
28
- content: ReactNode;
28
+ content: string;
29
29
  cta: ButtonProps;
30
30
  };
31
31
  }
@@ -46,5 +46,6 @@ export interface SectionHeadingProps {
46
46
  align?: 'start' | 'center';
47
47
  titleClass?: string;
48
48
  className?: string;
49
+ hasMaxWidth?: boolean;
49
50
  }
50
51
 
@@ -1,22 +1,23 @@
1
1
  import { jsx as l, jsxs as a } from "react/jsx-runtime";
2
- import { SectionHeading as s } from "./SectionHeading.js";
3
- import { Button as r } from "./Button.js";
4
- const c = ({ header: i, guidelineCards: n, footerCard: e }) => /* @__PURE__ */ l("section", { className: "bg-neutral-25 py-8", children: /* @__PURE__ */ a("div", { className: "mx-auto w-full max-w-6xl px-4 md:px-6", children: [
5
- /* @__PURE__ */ l(s, { ...i, align: "start" }),
6
- /* @__PURE__ */ l("div", { className: "my-8 flex flex-col gap-6 lg:mt-8 lg:mb-4 lg:flex-row", children: n.map((t) => /* @__PURE__ */ a("article", { className: "flex flex-1 flex-col rounded-2xl bg-white p-6 shadow-sm", children: [
2
+ import { SectionHeading as r } from "./SectionHeading.js";
3
+ import { Markdown as i } from "./Markdown.js";
4
+ import { Button as m } from "./Button.js";
5
+ const f = ({ header: n, guidelineCards: s, footerCard: e }) => /* @__PURE__ */ l("section", { className: "bg-neutral-25 py-8", children: /* @__PURE__ */ a("div", { className: "mx-auto w-full max-w-6xl px-4 md:px-6", children: [
6
+ /* @__PURE__ */ l(r, { ...n, align: "start", hasMaxWidth: !1 }),
7
+ /* @__PURE__ */ l("div", { className: "my-8 flex flex-col gap-6 lg:mt-8 lg:mb-4 lg:flex-row", children: s.map((t) => /* @__PURE__ */ a("article", { className: "flex flex-1 flex-col rounded-2xl bg-white p-6 shadow-sm", children: [
7
8
  /* @__PURE__ */ l("div", { className: "w-full rounded-2xl", children: t.image }),
8
9
  /* @__PURE__ */ l("p", { className: "my-6 font-sans text-lg leading-6 font-bold tracking-[-0.3px] text-neutral-800", children: t.title }),
9
- /* @__PURE__ */ l("div", { className: "font-sans text-base leading-[22px] text-neutral-800 [&_li]:mb-0 [&_ol]:mb-4 [&_ol]:ml-4 [&_ol]:list-decimal [&_ul]:mb-4 [&_ul]:ml-4 [&_ul]:list-disc", children: t.content })
10
+ /* @__PURE__ */ l("div", { className: "font-sans text-base leading-[22px] text-neutral-800 [&_li]:mb-0 [&_ol]:mb-4 [&_ol]:ml-4 [&_ol]:list-decimal [&_ul]:mb-4 [&_ul]:ml-4 [&_ul]:list-disc", children: /* @__PURE__ */ l(i, { content: t.content }) })
10
11
  ] }, t.title)) }),
11
12
  /* @__PURE__ */ a("div", { className: "my-8 flex flex-col justify-between overflow-hidden rounded-2xl bg-white shadow-sm lg:mb-4 lg:flex-row lg:overflow-visible lg:p-6", children: [
12
13
  /* @__PURE__ */ a("div", { className: "order-2 flex flex-1 flex-col justify-start p-6 text-neutral-800 lg:order-1 lg:mr-12 lg:p-0", children: [
13
14
  /* @__PURE__ */ l("p", { className: "mb-4 font-sans text-[18px] leading-[24px] font-bold tracking-[-0.3px] text-neutral-800", children: e.title }),
14
- /* @__PURE__ */ l("div", { className: "[&_a]:text-primary-800 mb-6 font-sans text-[16px] leading-[22px] font-normal tracking-[-0.3px] [&_a]:font-normal", children: e.content }),
15
- /* @__PURE__ */ l("div", { className: "mt-10 self-start", children: /* @__PURE__ */ l(r, { size: "large", variant: "primary-darkgreen", ...e.cta }) })
15
+ /* @__PURE__ */ l("div", { className: "[&_a]:text-primary-800 mb-6 font-sans text-[16px] leading-[22px] font-normal tracking-[-0.3px] [&_a]:font-normal", children: /* @__PURE__ */ l(i, { content: e.content }) }),
16
+ /* @__PURE__ */ l("div", { className: "mt-10 self-start", children: /* @__PURE__ */ l(m, { size: "large", variant: "primary-darkgreen", ...e.cta }) })
16
17
  ] }),
17
18
  /* @__PURE__ */ l("div", { className: "order-1 mb-8 w-full lg:order-2 lg:mb-0 lg:w-1/2", children: /* @__PURE__ */ l("div", { className: "w-full", children: e.image }) })
18
19
  ] })
19
20
  ] }) });
20
21
  export {
21
- c as GuidelinesSection
22
+ f as GuidelinesSection
22
23
  };
@@ -109,6 +109,7 @@ export interface SectionHeadingProps {
109
109
  align?: 'start' | 'center';
110
110
  titleClass?: string;
111
111
  className?: string;
112
+ hasMaxWidth?: boolean;
112
113
  }
113
114
 
114
115
  export interface TrustSectionProps {
@@ -5,7 +5,7 @@ export declare const MissionSection: FC<MissionSectionProps>;
5
5
 
6
6
  export declare interface MissionSectionProps {
7
7
  title: string;
8
- children: ReactNode;
8
+ body: string;
9
9
  image: ReactNode;
10
10
  }
11
11
 
@@ -1,16 +1,17 @@
1
- import { jsx as e, jsxs as a } from "react/jsx-runtime";
2
- import { TwoColumnSection as l } from "./TwoColumnSection.js";
3
- const o = ({ title: s, children: t, image: r }) => /* @__PURE__ */ e(
4
- l,
1
+ import { jsx as e, jsxs as s } from "react/jsx-runtime";
2
+ import { TwoColumnSection as o } from "./TwoColumnSection.js";
3
+ import { Markdown as a } from "./Markdown.js";
4
+ const m = ({ title: r, body: t, image: n }) => /* @__PURE__ */ e(
5
+ o,
5
6
  {
6
7
  containerClassName: "gap-20 items-center",
7
- firstColumn: /* @__PURE__ */ a("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
8
- /* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children: s }),
9
- /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: t })
8
+ firstColumn: /* @__PURE__ */ s("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
9
+ /* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children: r }),
10
+ /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: /* @__PURE__ */ e(a, { content: t }) })
10
11
  ] }),
11
- secondColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl p-6", children: r }) })
12
+ secondColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl", children: n }) })
12
13
  }
13
14
  );
14
15
  export {
15
- o as MissionSection
16
+ m as MissionSection
16
17
  };
@@ -24,5 +24,6 @@ export interface SectionHeadingProps {
24
24
  align?: 'start' | 'center';
25
25
  titleClass?: string;
26
26
  className?: string;
27
+ hasMaxWidth?: boolean;
27
28
  }
28
29
 
@@ -18,5 +18,6 @@ export interface SectionHeadingProps {
18
18
  align?: 'start' | 'center';
19
19
  titleClass?: string;
20
20
  className?: string;
21
+ hasMaxWidth?: boolean;
21
22
  }
22
23
 
@@ -20,5 +20,6 @@ export interface SectionHeadingProps {
20
20
  align?: 'start' | 'center';
21
21
  titleClass?: string;
22
22
  className?: string;
23
+ hasMaxWidth?: boolean;
23
24
  }
24
25
 
@@ -8,5 +8,6 @@ export declare interface SectionHeadingProps {
8
8
  align?: 'start' | 'center';
9
9
  titleClass?: string;
10
10
  className?: string;
11
+ hasMaxWidth?: boolean;
11
12
  }
12
13
 
@@ -1,22 +1,26 @@
1
1
  import { jsxs as c, jsx as t } from "react/jsx-runtime";
2
2
  import "react";
3
- import { Markdown as m } from "./Markdown.js";
4
- const i = ({
3
+ import { Markdown as o } from "./Markdown.js";
4
+ const f = ({
5
5
  title: r,
6
6
  description: e,
7
- align: l = "center",
8
- titleClass: a = "font-lora text-super-large",
9
- className: n = ""
10
- }) => /* @__PURE__ */ c(
11
- "div",
12
- {
13
- className: `flex flex-col gap-4 text-neutral-800 ${n} ${l === "center" ? "items-center text-center" : "text-left"}`,
14
- children: [
15
- /* @__PURE__ */ t("h2", { className: a, children: r }),
16
- e && /* @__PURE__ */ t(m, { className: "text-medium max-w-3xl [&_p:last-child]:mb-0", content: e })
17
- ]
18
- }
19
- );
7
+ align: a = "center",
8
+ titleClass: l = "font-lora text-super-large",
9
+ className: m = "",
10
+ hasMaxWidth: n = !0
11
+ }) => {
12
+ const s = n ? "max-w-3xl" : "";
13
+ return /* @__PURE__ */ c(
14
+ "div",
15
+ {
16
+ className: `flex flex-col gap-4 text-neutral-800 ${m} ${a === "center" ? "items-center text-center" : "text-left"}`,
17
+ children: [
18
+ /* @__PURE__ */ t("h2", { className: l, children: r }),
19
+ e && /* @__PURE__ */ t(o, { className: "text-medium [&_p:last-child]:mb-0 " + s, content: e })
20
+ ]
21
+ }
22
+ );
23
+ };
20
24
  export {
21
- i as SectionHeading
25
+ f as SectionHeading
22
26
  };
@@ -1,40 +1,41 @@
1
- import { jsx as e, jsxs as a } from "react/jsx-runtime";
2
- const i = ({ title: n, text: s, storyItems: l }) => /* @__PURE__ */ e("section", { className: "bg-secondary-100 p-6 md:px-6 md:py-12", children: /* @__PURE__ */ a("div", { className: "mx-auto max-w-6xl rounded-2xl bg-white p-6 md:p-12", children: [
3
- /* @__PURE__ */ e("h2", { className: "pb-6 font-sans text-3xl font-bold tracking-tight text-neutral-800", children: n }),
4
- /* @__PURE__ */ e("div", { className: "pb-2 font-sans text-base text-neutral-800 md:pb-6", children: s }),
5
- /* @__PURE__ */ a("ul", { className: "relative mt-4 pl-6 md:mt-0", children: [
6
- /* @__PURE__ */ e(
1
+ import { jsx as t, jsxs as l } from "react/jsx-runtime";
2
+ import { Markdown as s } from "./Markdown.js";
3
+ const m = ({ title: n, text: o, storyItems: a }) => /* @__PURE__ */ t("section", { className: "bg-secondary-100 p-6 md:px-6 md:py-12", children: /* @__PURE__ */ l("div", { className: "mx-auto max-w-6xl rounded-2xl bg-white p-6 md:p-12", children: [
4
+ /* @__PURE__ */ t("h2", { className: "pb-6 font-sans text-3xl font-bold tracking-tight text-neutral-800", children: n }),
5
+ /* @__PURE__ */ t(s, { content: o }),
6
+ /* @__PURE__ */ l("ul", { className: "relative mt-4 pl-6 md:mt-0", children: [
7
+ /* @__PURE__ */ t(
7
8
  "div",
8
9
  {
9
10
  className: "absolute top-0 bottom-0 left-1 w-0.5 bg-[repeating-linear-gradient(to_bottom,currentColor,currentColor_0.75rem,transparent_0.75rem,transparent_1.25rem)] text-neutral-400",
10
11
  "aria-hidden": "true"
11
12
  }
12
13
  ),
13
- l.map((t, r) => /* @__PURE__ */ a(
14
+ a.map((e, r) => /* @__PURE__ */ l(
14
15
  "li",
15
16
  {
16
17
  className: "bg-neutral-25 relative mt-4 flex list-none flex-col rounded-2xl p-6 first:mt-0 md:flex-row",
17
18
  children: [
18
- r === 0 && /* @__PURE__ */ e("div", { className: "absolute top-0 bottom-1/2 -left-6 z-0 w-2.5 bg-white", "aria-hidden": "true" }),
19
- r === l.length - 1 && /* @__PURE__ */ e("div", { className: "absolute top-1/2 bottom-0 -left-6 z-0 w-2.5 bg-white", "aria-hidden": "true" }),
20
- /* @__PURE__ */ e(
19
+ r === 0 && /* @__PURE__ */ t("div", { className: "absolute top-0 bottom-1/2 -left-6 z-0 w-2.5 bg-white", "aria-hidden": "true" }),
20
+ r === a.length - 1 && /* @__PURE__ */ t("div", { className: "absolute top-1/2 bottom-0 -left-6 z-0 w-2.5 bg-white", "aria-hidden": "true" }),
21
+ /* @__PURE__ */ t(
21
22
  "div",
22
23
  {
23
24
  className: "bg-primary-800 absolute top-1/2 -left-6 z-10 h-2.5 w-2.5 -translate-y-1/2 rounded-full",
24
25
  "aria-hidden": "true"
25
26
  }
26
27
  ),
27
- /* @__PURE__ */ e("div", { className: "flex h-10 w-10 shrink-0 items-center justify-center rounded-xl bg-neutral-200 p-2", children: t.icon }),
28
- /* @__PURE__ */ a("div", { className: "md:flex-1 md:pl-4", children: [
29
- /* @__PURE__ */ e("p", { className: "mt-4 font-sans text-lg font-bold text-neutral-800 md:mt-0", children: t.title }),
30
- /* @__PURE__ */ e("div", { className: "mt-2 font-sans text-base font-normal text-neutral-800", children: t.description })
28
+ /* @__PURE__ */ t("div", { className: "flex h-10 w-10 shrink-0 items-center justify-center rounded-xl bg-neutral-200 p-2", children: e.icon }),
29
+ /* @__PURE__ */ l("div", { className: "md:flex-1 md:pl-4", children: [
30
+ /* @__PURE__ */ t("p", { className: "mt-4 font-sans text-lg font-bold text-neutral-800 md:mt-0", children: e.title }),
31
+ /* @__PURE__ */ t("div", { className: "mt-2 font-sans text-base font-normal text-neutral-800", children: e.description })
31
32
  ] })
32
33
  ]
33
34
  },
34
- t.title
35
+ e.title
35
36
  ))
36
37
  ] })
37
38
  ] }) });
38
39
  export {
39
- i as Storyline
40
+ m as Storyline
40
41
  };
@@ -1,10 +1,12 @@
1
- import { jsxs as s, jsx as t } from "react/jsx-runtime";
2
- import { Markdown as a } from "./Markdown.js";
3
- const i = ({ trustPilot: e, content: l, title: r }) => /* @__PURE__ */ s("section", { className: "bg-white px-6 py-8 lg:px-8 lg:py-12 xl:px-0", children: [
4
- /* @__PURE__ */ t("h2", { className: "text-super-large mb-8 text-center font-bold text-neutral-800", children: r }),
5
- /* @__PURE__ */ t(a, { content: l, variant: "about-us" }),
6
- /* @__PURE__ */ t("section", { className: "bg-white px-6 py-8 lg:px-8 lg:py-12 xl:px-0", children: /* @__PURE__ */ t("div", { className: "mx-auto w-full max-w-254 md:h-34", children: e }) })
1
+ import { jsxs as e, jsx as t } from "react/jsx-runtime";
2
+ import { Markdown as r } from "./Markdown.js";
3
+ const o = ({ trustPilot: l, content: a, title: s }) => /* @__PURE__ */ e("section", { className: "bg-white px-6 py-8 lg:px-8 lg:py-12 xl:px-0", children: [
4
+ /* @__PURE__ */ e("div", { className: "mx-auto w-fit", children: [
5
+ /* @__PURE__ */ t("h2", { className: "text-super-large mb-8 text-center font-bold text-neutral-800", children: s }),
6
+ /* @__PURE__ */ t(r, { content: a, variant: "about-us", className: "mx-auto" })
7
+ ] }),
8
+ /* @__PURE__ */ t("section", { className: "bg-white px-6 py-8 lg:px-8 lg:py-12 xl:px-0", children: /* @__PURE__ */ t("div", { className: "mx-auto w-full max-w-6xl md:h-34", children: l }) })
7
9
  ] });
8
10
  export {
9
- i as TrustPilotSection
11
+ o as TrustPilotSection
10
12
  };
@@ -7,6 +7,7 @@ export interface SectionHeadingProps {
7
7
  align?: 'start' | 'center';
8
8
  titleClass?: string;
9
9
  className?: string;
10
+ hasMaxWidth?: boolean;
10
11
  }
11
12
 
12
13
  export declare const TrustSection: FC<TrustSectionProps>;
@@ -5,7 +5,7 @@ export declare const ValuesSection: FC<ValuesSectionProps>;
5
5
 
6
6
  export declare interface ValuesSectionProps {
7
7
  title: string;
8
- children: ReactNode;
8
+ body: string;
9
9
  image: ReactNode;
10
10
  }
11
11
 
@@ -1,16 +1,17 @@
1
- import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
- import { TwoColumnSection as a } from "./TwoColumnSection.js";
3
- const o = ({ title: s, children: l, image: r }) => /* @__PURE__ */ e(
4
- a,
1
+ import { jsx as e, jsxs as s } from "react/jsx-runtime";
2
+ import { TwoColumnSection as n } from "./TwoColumnSection.js";
3
+ import { Markdown as a } from "./Markdown.js";
4
+ const m = ({ title: r, body: t, image: l }) => /* @__PURE__ */ e(
5
+ n,
5
6
  {
6
7
  containerClassName: "gap-20 items-center flex-col-reverse",
7
- firstColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl p-6", children: r }) }),
8
- secondColumn: /* @__PURE__ */ t("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
9
- /* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children: s }),
10
- /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: l })
8
+ firstColumn: /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e("div", { className: "bg-primary-50 rounded-3xl p-6", children: l }) }),
9
+ secondColumn: /* @__PURE__ */ s("div", { className: "flex-1 space-y-6 text-neutral-800", children: [
10
+ /* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children: r }),
11
+ /* @__PURE__ */ e("div", { className: "text-medium space-y-4", children: /* @__PURE__ */ e(a, { content: t }) })
11
12
  ] })
12
13
  }
13
14
  );
14
15
  export {
15
- o as ValuesSection
16
+ m as ValuesSection
16
17
  };