@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.
- package/dist/components/AboutUsTemplate.d.ts +5 -4
- package/dist/components/AboutUsTemplate.js +28 -28
- package/dist/components/BlogSection.d.ts +1 -0
- package/dist/components/CategoriesSection.d.ts +1 -0
- package/dist/components/CategoryProductTemplate.d.ts +1 -0
- package/dist/components/ContactUsSection.d.ts +1 -0
- package/dist/components/CtaSection.js +5 -5
- package/dist/components/ExpertsSection.d.ts +1 -0
- package/dist/components/ExpertsSection.js +6 -6
- package/dist/components/FaqTeaserSection.d.ts +1 -0
- package/dist/components/GuidelinesSection.d.ts +3 -2
- package/dist/components/GuidelinesSection.js +10 -9
- package/dist/components/HomeTemplate.d.ts +1 -0
- package/dist/components/MissionSection.d.ts +1 -1
- package/dist/components/MissionSection.js +10 -9
- package/dist/components/MoreTemplatesSection.d.ts +1 -0
- package/dist/components/PartnersSection.d.ts +1 -0
- package/dist/components/ProcessSection.d.ts +1 -0
- package/dist/components/SectionHeading.d.ts +1 -0
- package/dist/components/SectionHeading.js +20 -16
- package/dist/components/Storyline.js +17 -16
- package/dist/components/TrustPilotSection.js +9 -7
- package/dist/components/TrustSection.d.ts +1 -0
- package/dist/components/ValuesSection.d.ts +1 -1
- package/dist/components/ValuesSection.js +10 -9
- package/dist/globals.css +1 -1
- package/package.json +1 -1
|
@@ -64,12 +64,12 @@ export interface GuidelinesSectionProps {
|
|
|
64
64
|
guidelineCards: Array<{
|
|
65
65
|
title: string;
|
|
66
66
|
image: ReactNode;
|
|
67
|
-
content:
|
|
67
|
+
content: string;
|
|
68
68
|
}>;
|
|
69
69
|
footerCard: {
|
|
70
70
|
title: string;
|
|
71
71
|
image: ReactNode;
|
|
72
|
-
content:
|
|
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
|
-
|
|
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
|
-
|
|
145
|
+
body: string;
|
|
145
146
|
image: ReactNode;
|
|
146
147
|
}
|
|
147
148
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { MissionSection as
|
|
3
|
-
import { ValuesSection as
|
|
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
|
|
6
|
-
import { GuidelinesSection as
|
|
7
|
-
import { ExpertsSection as
|
|
8
|
-
import { TrustPilotSection as
|
|
9
|
-
import { PartnersSection as
|
|
10
|
-
import { CtaSection as
|
|
11
|
-
import { ContactUsSection as
|
|
12
|
-
import { Jumbotron2 as
|
|
13
|
-
import { IntroSection as
|
|
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:
|
|
22
|
-
experts:
|
|
21
|
+
guidelines: l,
|
|
22
|
+
experts: p,
|
|
23
23
|
trustPilot: s,
|
|
24
|
-
partners:
|
|
25
|
-
cta:
|
|
24
|
+
partners: f,
|
|
25
|
+
cta: c,
|
|
26
26
|
contactUs: a
|
|
27
|
-
}) => /* @__PURE__ */
|
|
28
|
-
/* @__PURE__ */ o(
|
|
29
|
-
/* @__PURE__ */ o(
|
|
30
|
-
/* @__PURE__ */ o(
|
|
31
|
-
/* @__PURE__ */ o(
|
|
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(
|
|
34
|
-
/* @__PURE__ */ o(
|
|
35
|
-
/* @__PURE__ */ o(
|
|
36
|
-
/* @__PURE__ */ o(
|
|
37
|
-
/* @__PURE__ */ o(
|
|
38
|
-
/* @__PURE__ */ o(
|
|
39
|
-
/* @__PURE__ */ o(
|
|
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
|
|
@@ -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
|
|
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
|
-
),
|
|
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-
|
|
44
|
+
/* @__PURE__ */ e("span", { className: "text-small text-primary-500", children: l })
|
|
45
45
|
]
|
|
46
46
|
}
|
|
47
47
|
);
|
|
48
48
|
export {
|
|
49
|
-
|
|
49
|
+
f as CtaFeatureTag,
|
|
50
50
|
o as CtaSample,
|
|
51
|
-
|
|
51
|
+
x as CtaSection,
|
|
52
52
|
g as CtaSummarizedTag
|
|
53
53
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
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:
|
|
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-
|
|
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
|
|
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__ */
|
|
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
|
] })
|
|
@@ -20,12 +20,12 @@ export declare interface GuidelinesSectionProps {
|
|
|
20
20
|
guidelineCards: Array<{
|
|
21
21
|
title: string;
|
|
22
22
|
image: ReactNode;
|
|
23
|
-
content:
|
|
23
|
+
content: string;
|
|
24
24
|
}>;
|
|
25
25
|
footerCard: {
|
|
26
26
|
title: string;
|
|
27
27
|
image: ReactNode;
|
|
28
|
-
content:
|
|
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
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
/* @__PURE__ */ l(
|
|
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(
|
|
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
|
-
|
|
22
|
+
f as GuidelinesSection
|
|
22
23
|
};
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import { TwoColumnSection as
|
|
3
|
-
|
|
4
|
-
|
|
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__ */
|
|
8
|
-
/* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children:
|
|
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
|
|
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
|
-
|
|
16
|
+
m as MissionSection
|
|
16
17
|
};
|
|
@@ -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
|
|
4
|
-
const
|
|
3
|
+
import { Markdown as o } from "./Markdown.js";
|
|
4
|
+
const f = ({
|
|
5
5
|
title: r,
|
|
6
6
|
description: e,
|
|
7
|
-
align:
|
|
8
|
-
titleClass:
|
|
9
|
-
className:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
25
|
+
f as SectionHeading
|
|
22
26
|
};
|
|
@@ -1,40 +1,41 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/* @__PURE__ */
|
|
5
|
-
/* @__PURE__ */
|
|
6
|
-
|
|
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
|
-
|
|
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__ */
|
|
19
|
-
r ===
|
|
20
|
-
/* @__PURE__ */
|
|
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__ */
|
|
28
|
-
/* @__PURE__ */
|
|
29
|
-
/* @__PURE__ */
|
|
30
|
-
/* @__PURE__ */
|
|
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
|
-
|
|
35
|
+
e.title
|
|
35
36
|
))
|
|
36
37
|
] })
|
|
37
38
|
] }) });
|
|
38
39
|
export {
|
|
39
|
-
|
|
40
|
+
m as Storyline
|
|
40
41
|
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { Markdown as
|
|
3
|
-
const
|
|
4
|
-
/* @__PURE__ */
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
11
|
+
o as TrustPilotSection
|
|
10
12
|
};
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import { TwoColumnSection as
|
|
3
|
-
|
|
4
|
-
|
|
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:
|
|
8
|
-
secondColumn: /* @__PURE__ */
|
|
9
|
-
/* @__PURE__ */ e("p", { className: "text-super-large font-bold text-neutral-900", children:
|
|
10
|
-
/* @__PURE__ */ e("div", { className: "text-medium space-y-4", children:
|
|
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
|
-
|
|
16
|
+
m as ValuesSection
|
|
16
17
|
};
|