@npm_leadtech/legal-contracts-ui 0.124.8 → 0.124.9
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/AllDocumentsTemplate.d.ts +1 -0
- package/dist/components/Blockquote.js +9 -9
- package/dist/components/ContentItem.d.ts +1 -0
- package/dist/components/HowItWorksLawGeniusSection.js +8 -8
- package/dist/components/HowItWorksTemplate.d.ts +1 -0
- package/dist/components/HowItWorksTemplate.js +22 -23
- package/dist/components/ImageWithPreview.d.ts +1 -0
- package/dist/components/ImageWithPreview.js +11 -9
- package/dist/components/IntroSection.js +12 -13
- package/dist/components/OrderedList.js +9 -9
- package/dist/components/PreviewDownload.d.ts +2 -0
- package/dist/components/PreviewDownload.js +22 -19
- package/dist/components/PreviewSection.d.ts +1 -0
- package/dist/components/PreviewSection.js +24 -11
- package/dist/components/ProductTemplate.d.ts +3 -0
- package/dist/components/RatafiaSection.js +34 -44
- package/dist/components/TwoColumnSection.js +10 -10
- package/dist/globals.css +1 -1
- package/package.json +1 -1
- package/dist/components/index.d.ts +0 -1328
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
const
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import o from "clsx";
|
|
3
|
+
const s = ({ children: r, variant: a = "default" }) => {
|
|
4
4
|
const t = {
|
|
5
|
-
default: "border-l-4 border-gray-300 pl-4 text-gray-700 ",
|
|
6
|
-
"about-us": "text-gray-700
|
|
7
|
-
unsubscribe: "border-l-4 border-neutral-300 pl-4 text-neutral-700 "
|
|
8
|
-
},
|
|
9
|
-
return /* @__PURE__ */
|
|
5
|
+
default: "my-4 border-l-4 border-gray-300 pl-4 text-gray-700 italic",
|
|
6
|
+
"about-us": "my-4 text-gray-700 italic bg-neutral-25 pt-4 px-4 pb-0.5",
|
|
7
|
+
unsubscribe: "my-4 border-l-4 border-neutral-300 pl-4 text-neutral-700 italic"
|
|
8
|
+
}, e = t[a] ?? t.default;
|
|
9
|
+
return /* @__PURE__ */ l("blockquote", { className: o("my-4 italic", e), children: r });
|
|
10
10
|
};
|
|
11
11
|
export {
|
|
12
|
-
|
|
12
|
+
s as Blockquote
|
|
13
13
|
};
|
|
@@ -4,25 +4,25 @@ import { LawGeniusImageShell as p } from "./LawGeniusImageShell.js";
|
|
|
4
4
|
import { Markdown as t } from "./Markdown.js";
|
|
5
5
|
const v = ({
|
|
6
6
|
sectionTitle: s,
|
|
7
|
-
contentMarkdown:
|
|
7
|
+
contentMarkdown: m,
|
|
8
8
|
descriptionMarkdown: a,
|
|
9
|
-
steps:
|
|
9
|
+
steps: r,
|
|
10
10
|
belowStepsMarkdown: i,
|
|
11
11
|
cta: n,
|
|
12
12
|
imageUrl: c,
|
|
13
13
|
imageAlt: x
|
|
14
14
|
}) => {
|
|
15
|
-
const
|
|
16
|
-
return /* @__PURE__ */ e("section", { className: "bg-neutral-25 lg:px-ds-10xl px-6 pt-16 pb-12 sm:px-10", children: /* @__PURE__ */ e("div", { className: "bg-
|
|
15
|
+
const o = a.trim().length > 0, d = i.trim().length > 0;
|
|
16
|
+
return /* @__PURE__ */ e("section", { className: "bg-neutral-25 lg:px-ds-10xl px-6 pt-16 pb-12 sm:px-10", children: /* @__PURE__ */ e("div", { className: "bg-law-genius-section mx-auto w-full max-w-6xl rounded-3xl px-8 pt-16 pb-8 text-white shadow-[0_25px_80px_rgba(3,42,56,0.35)] sm:px-10 sm:pt-16 sm:pb-10", children: /* @__PURE__ */ l("div", { className: "flex w-full flex-col gap-8 lg:gap-10", children: [
|
|
17
17
|
/* @__PURE__ */ l("div", { className: "flex flex-col gap-4 text-center text-white", children: [
|
|
18
18
|
/* @__PURE__ */ e("h2", { className: "lg:text-super-large text-3xl font-bold lg:leading-tight", children: s }),
|
|
19
|
-
/* @__PURE__ */ e("div", { className: "[&_p]:text-medium [&_p]:text-white/80 [&_p:last-child]:mb-0", children: /* @__PURE__ */ e(t, { variant: "ratafia", content:
|
|
20
|
-
|
|
19
|
+
/* @__PURE__ */ e("div", { className: "[&_p]:text-medium [&_p]:text-white/80 [&_p:last-child]:mb-0", children: /* @__PURE__ */ e(t, { variant: "ratafia", content: m }) }),
|
|
20
|
+
o && /* @__PURE__ */ e("div", { className: "[&_p]:text-medium [&_p]:text-white/80 [&_p:last-child]:mb-0", children: /* @__PURE__ */ e(t, { variant: "ratafia", content: a }) })
|
|
21
21
|
] }),
|
|
22
22
|
/* @__PURE__ */ l("div", { className: "flex w-full flex-col gap-8 lg:grid lg:grid-cols-[minmax(0,1fr)_minmax(0,1.05fr)] lg:items-stretch lg:gap-10", children: [
|
|
23
23
|
/* @__PURE__ */ l("div", { className: "flex min-h-0 flex-col gap-6", children: [
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
r,
|
|
25
|
+
d && /* @__PURE__ */ e(
|
|
26
26
|
t,
|
|
27
27
|
{
|
|
28
28
|
variant: "ratafia",
|
|
@@ -12,26 +12,26 @@ import { Markdown as i } from "./Markdown.js";
|
|
|
12
12
|
import { TwoColumnSection as c } from "./TwoColumnSection.js";
|
|
13
13
|
import { LawGeniusImageShell as B } from "./LawGeniusImageShell.js";
|
|
14
14
|
const U = (t) => {
|
|
15
|
-
const m = /* @__PURE__ */ r("div", { className: "
|
|
15
|
+
const m = /* @__PURE__ */ r("div", { className: "min-w-0 space-y-4 text-neutral-800 lg:basis-[47%]", children: [
|
|
16
16
|
/* @__PURE__ */ e("h2", { className: "font-lora text-[2.05rem] leading-[1.15] font-bold text-neutral-800", children: t.title }),
|
|
17
17
|
/* @__PURE__ */ e("div", { className: "text-small space-y-3 text-neutral-700", children: /* @__PURE__ */ e(i, { variant: "legal", content: t.bodyMarkdown }) })
|
|
18
|
-
] }), a = /* @__PURE__ */ e("div", { className: "w-full
|
|
19
|
-
return { firstColumn: m, secondColumn: a };
|
|
20
|
-
},
|
|
21
|
-
const d = t.introMarkdown.trim().length > 0, p = t.closingMarkdown.trim().length > 0, x =
|
|
18
|
+
] }), a = /* @__PURE__ */ e("div", { className: "w-full shrink-0 lg:w-1/2 lg:max-w-[50%]", children: /* @__PURE__ */ e(W, { src: t.imageUrl, alt: t.imageAlt }) });
|
|
19
|
+
return t.reverse ? { firstColumn: a, secondColumn: m } : { firstColumn: m, secondColumn: a };
|
|
20
|
+
}, J = ({ hero: t, processSteps: m, lawGenius: a, resources: s }) => {
|
|
21
|
+
const d = t.introMarkdown.trim().length > 0, p = t.closingMarkdown.trim().length > 0, x = s.supportBodyMarkdown.trim().length > 0, g = a.belowStepsMarkdown.trim().length > 0, { examples: n } = s, f = /* @__PURE__ */ e(
|
|
22
22
|
o,
|
|
23
23
|
{
|
|
24
|
-
size: "
|
|
24
|
+
size: "large",
|
|
25
25
|
variant: "primary-green",
|
|
26
|
-
className: "text-
|
|
26
|
+
className: "text-medium w-full justify-center !rounded-md font-bold lg:w-auto",
|
|
27
27
|
children: /* @__PURE__ */ e("a", { href: a.cta.href, className: b, children: a.cta.label })
|
|
28
28
|
}
|
|
29
29
|
);
|
|
30
|
-
return /* @__PURE__ */ r("main", { className: "flex w-full max-w-full min-w-0 flex-1 flex-col
|
|
30
|
+
return /* @__PURE__ */ r("main", { className: "flex w-full max-w-full min-w-0 flex-1 flex-col", children: [
|
|
31
31
|
/* @__PURE__ */ e("section", { className: "bg-primary-50 lg:px-ds-10xl px-6 pt-4 pb-12 sm:px-10", children: /* @__PURE__ */ r("div", { className: "mx-auto flex max-w-6xl flex-col gap-12", children: [
|
|
32
32
|
/* @__PURE__ */ r("div", { className: "text-center", children: [
|
|
33
|
-
/* @__PURE__ */ r("div", { className: "mx-auto flex
|
|
34
|
-
/* @__PURE__ */ e("p", { className: "text-small
|
|
33
|
+
/* @__PURE__ */ r("div", { className: "mx-auto inline-flex max-w-full flex-col items-center gap-2", children: [
|
|
34
|
+
/* @__PURE__ */ e("p", { className: "text-small font-semibold tracking-[0.3em] whitespace-nowrap text-neutral-600 uppercase", children: t.eyebrow }),
|
|
35
35
|
/* @__PURE__ */ e("span", { className: "h-px w-full max-w-[7.5rem] min-w-[5.5rem] shrink-0 bg-neutral-400", "aria-hidden": !0 })
|
|
36
36
|
] }),
|
|
37
37
|
/* @__PURE__ */ e("h1", { className: "font-lora mx-auto mt-12 max-w-[48rem] text-4xl leading-tight font-bold tracking-tight text-neutral-800 sm:text-5xl sm:leading-tight", children: t.title })
|
|
@@ -40,7 +40,7 @@ const U = (t) => {
|
|
|
40
40
|
A,
|
|
41
41
|
{
|
|
42
42
|
className: "bg-transparent",
|
|
43
|
-
containerClassName: "w-full !max-w-none
|
|
43
|
+
containerClassName: "w-full !max-w-none flex-col gap-10 !px-0 !py-0 lg:flex-row lg:items-stretch",
|
|
44
44
|
image: /* @__PURE__ */ e(S, { src: t.imageUrl, alt: t.imageAlt, priority: t.imagePriority }),
|
|
45
45
|
cta: {
|
|
46
46
|
size: "large",
|
|
@@ -73,8 +73,7 @@ const U = (t) => {
|
|
|
73
73
|
className: `${l.background} lg:px-ds-10xl px-6 py-12 sm:px-10`,
|
|
74
74
|
containerClassName: N(
|
|
75
75
|
"!mx-auto !w-full !max-w-6xl !px-0 !py-0 !gap-8 md:!gap-10 lg:items-start",
|
|
76
|
-
"!flex-col-reverse
|
|
77
|
-
l.reverse && "lg:!flex-row-reverse"
|
|
76
|
+
l.imageFirstOnMobile ? "!flex-col-reverse md:!flex-row" : "!flex-col md:!flex-row"
|
|
78
77
|
),
|
|
79
78
|
firstColumn: u,
|
|
80
79
|
secondColumn: h
|
|
@@ -115,24 +114,24 @@ const U = (t) => {
|
|
|
115
114
|
c,
|
|
116
115
|
{
|
|
117
116
|
className: "bg-neutral-25 lg:px-ds-10xl px-6 py-12 sm:px-10",
|
|
118
|
-
containerClassName: "!mx-auto !w-full !max-w-6xl !
|
|
119
|
-
firstColumn: /* @__PURE__ */ e("div", { className: "w-full min-w-0 shrink-0 rounded-2xl border border-neutral-100 bg-white p-4 lg:basis-[48%] lg:p-5", children: /* @__PURE__ */ e(L, { src:
|
|
120
|
-
secondColumn: /* @__PURE__ */ r("div", { className: "w-full
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
x && /* @__PURE__ */ e("div", { className: `text-small space-y-3 text-neutral-700 ${C}`, children: /* @__PURE__ */ e(i, { variant: "legal", content:
|
|
124
|
-
|
|
117
|
+
containerClassName: "!mx-auto !w-full !max-w-6xl !items-start !gap-8 !px-0 !py-0 md:!gap-10 lg:!items-stretch",
|
|
118
|
+
firstColumn: /* @__PURE__ */ e("div", { className: "w-full min-w-0 shrink-0 rounded-2xl border border-neutral-100 bg-white p-4 lg:basis-[48%] lg:p-5", children: /* @__PURE__ */ e(L, { src: s.imageUrl, alt: s.imageAlt }) }),
|
|
119
|
+
secondColumn: /* @__PURE__ */ r("div", { className: "w-full space-y-4 lg:basis-[52%]", children: [
|
|
120
|
+
n.eyebrow && /* @__PURE__ */ e("p", { className: "text-xs font-semibold tracking-[0.2em] text-neutral-500 uppercase", children: n.eyebrow }),
|
|
121
|
+
n.title && /* @__PURE__ */ e("h3", { className: "font-lora text-[2rem] leading-[1.2] font-bold text-neutral-800", children: n.title }),
|
|
122
|
+
x && /* @__PURE__ */ e("div", { className: `text-small space-y-3 text-neutral-700 ${C}`, children: /* @__PURE__ */ e(i, { variant: "legal", content: s.supportBodyMarkdown }) }),
|
|
123
|
+
n.rows.length > 0 && /* @__PURE__ */ e("dl", { className: "text-small space-y-2 text-neutral-700", children: n.rows.map((l) => /* @__PURE__ */ r("div", { className: "flex flex-wrap gap-x-2", children: [
|
|
125
124
|
/* @__PURE__ */ e("dt", { className: "font-semibold", children: l.label }),
|
|
126
125
|
/* @__PURE__ */ e("dd", { children: l.value })
|
|
127
126
|
] }, `${l.label}-${l.value}`)) }),
|
|
128
|
-
|
|
127
|
+
n.footer && /* @__PURE__ */ e("p", { className: "text-small text-neutral-600", children: n.footer }),
|
|
129
128
|
/* @__PURE__ */ e(
|
|
130
129
|
o,
|
|
131
130
|
{
|
|
132
131
|
size: "small",
|
|
133
132
|
variant: "primary-green",
|
|
134
133
|
className: "text-small inline-flex w-auto justify-center font-bold",
|
|
135
|
-
children: /* @__PURE__ */ e("a", { href:
|
|
134
|
+
children: /* @__PURE__ */ e("a", { href: s.cta.href, className: v, children: s.cta.label })
|
|
136
135
|
}
|
|
137
136
|
)
|
|
138
137
|
] })
|
|
@@ -141,5 +140,5 @@ const U = (t) => {
|
|
|
141
140
|
] });
|
|
142
141
|
};
|
|
143
142
|
export {
|
|
144
|
-
|
|
143
|
+
J as HowItWorksTemplate
|
|
145
144
|
};
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import { useState as
|
|
4
|
-
import { ZoomIcon as
|
|
2
|
+
import { jsxs as a, jsx as e } from "react/jsx-runtime";
|
|
3
|
+
import { useState as n } from "react";
|
|
4
|
+
import { ZoomIcon as c } from "./ZoomIcon.js";
|
|
5
5
|
import { Modal as m } from "./Modal.js";
|
|
6
|
-
const
|
|
7
|
-
const [
|
|
8
|
-
return /* @__PURE__ */
|
|
9
|
-
/* @__PURE__ */ e("div", { className: "h-full w-full [&_img]:h-full [&_img]:w-full [&_img]:object-cover", children:
|
|
10
|
-
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(m, { trigger: /* @__PURE__ */ e(
|
|
6
|
+
const b = ({ small: l, large: s, onZoomClick: r }) => {
|
|
7
|
+
const [t, o] = n(!1);
|
|
8
|
+
return /* @__PURE__ */ a("div", { className: "relative aspect-3/4 w-75 self-center overflow-hidden border border-neutral-200", children: [
|
|
9
|
+
/* @__PURE__ */ e("div", { className: "h-full w-full [&_img]:h-full [&_img]:w-full [&_img]:object-cover", children: l }),
|
|
10
|
+
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(m, { trigger: /* @__PURE__ */ e(c, { className: "bg-primary-700 size-8 rounded p-2 opacity-80 hover:opacity-100" }), isOpen: t, setIsOpen: (i) => {
|
|
11
|
+
o(i), i && r && r();
|
|
12
|
+
}, children: s }) })
|
|
11
13
|
] });
|
|
12
14
|
};
|
|
13
15
|
export {
|
|
14
|
-
|
|
16
|
+
b as ImageWithPreview
|
|
15
17
|
};
|
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
a,
|
|
1
|
+
import { jsx as s, jsxs as n } from "react/jsx-runtime";
|
|
2
|
+
import { TwoColumnSection as e } from "./TwoColumnSection.js";
|
|
3
|
+
import { LinkWrapper as o } from "./LinkWrapper.js";
|
|
4
|
+
const c = ({ image: i, children: r, cta: m, className: a, containerClassName: l }) => /* @__PURE__ */ s(
|
|
5
|
+
e,
|
|
7
6
|
{
|
|
8
|
-
className:
|
|
9
|
-
containerClassName:
|
|
10
|
-
firstColumn: /* @__PURE__ */
|
|
11
|
-
secondColumn: /* @__PURE__ */
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
className: a ?? "",
|
|
8
|
+
containerClassName: l,
|
|
9
|
+
firstColumn: /* @__PURE__ */ s("div", { className: "mb-4 min-h-0 w-full min-w-0 shrink-0 md:mr-6 md:mb-0 md:basis-42/100 lg:mr-10 lg:basis-39/100 xl:basis-36/100", children: i }),
|
|
10
|
+
secondColumn: /* @__PURE__ */ n("div", { className: "mt-4 basis-full md:mt-0 md:basis-56/100 lg:basis-59/100 xl:basis-60/100", children: [
|
|
11
|
+
r,
|
|
12
|
+
m && /* @__PURE__ */ s(o, { size: "large", variant: "primary-green", className: "mt-8", ...m })
|
|
14
13
|
] })
|
|
15
14
|
}
|
|
16
15
|
);
|
|
17
16
|
export {
|
|
18
|
-
|
|
17
|
+
c as IntroSection
|
|
19
18
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import a from "clsx";
|
|
3
|
-
const
|
|
3
|
+
const m = ({ variant: e = "default", children: l }) => {
|
|
4
4
|
const t = {
|
|
5
|
-
default: "mb-4 list-inside
|
|
6
|
-
legal: "
|
|
7
|
-
ratafia: "mb-3 list-outside space-y-2 pl-5 text-white/85 marker:text-white/60",
|
|
8
|
-
unsubscribe: "mb-4 w-full list-outside space-y-2 pl-10 text-neutral-800"
|
|
9
|
-
};
|
|
10
|
-
return /* @__PURE__ */
|
|
5
|
+
default: "mb-4 list-inside list-decimal text-gray-900 space-y-2",
|
|
6
|
+
legal: "list-outside list-decimal pl-8 mb-4 text-neutral-800 space-y-4",
|
|
7
|
+
ratafia: "mb-3 list-outside list-decimal space-y-2 pl-5 text-white/85 marker:text-white/60",
|
|
8
|
+
unsubscribe: "mb-4 w-full list-outside list-decimal space-y-2 pl-10 text-neutral-800"
|
|
9
|
+
}, s = t[e] ?? t.default;
|
|
10
|
+
return /* @__PURE__ */ i("ol", { className: a("mb-4 list-decimal", s), children: l });
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
13
|
-
|
|
13
|
+
m as OrderedList
|
|
14
14
|
};
|
|
@@ -4,6 +4,7 @@ import { ReactNode } from 'react';
|
|
|
4
4
|
export interface ImageWithPreviewProps {
|
|
5
5
|
small: ReactNode;
|
|
6
6
|
large: ReactNode;
|
|
7
|
+
onZoomClick?: () => void;
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
export declare const PreviewDownload: FC<PreviewDownloadProps>;
|
|
@@ -15,5 +16,6 @@ export declare interface PreviewDownloadProps {
|
|
|
15
16
|
footerText: string;
|
|
16
17
|
pdfDownload: ReactNode;
|
|
17
18
|
wordDownload: ReactNode;
|
|
19
|
+
onZoomClick?: () => void;
|
|
18
20
|
}
|
|
19
21
|
|
|
@@ -1,38 +1,41 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
3
|
-
import { useState as
|
|
4
|
-
import { ZoomIcon as
|
|
5
|
-
import { Modal as
|
|
6
|
-
import { Markdown as
|
|
3
|
+
import { useState as h } from "react";
|
|
4
|
+
import { ZoomIcon as x } from "./ZoomIcon.js";
|
|
5
|
+
import { Modal as b } from "./Modal.js";
|
|
6
|
+
import { Markdown as w } from "./Markdown.js";
|
|
7
7
|
import { LinkWrapper as r } from "./LinkWrapper.js";
|
|
8
|
-
const
|
|
9
|
-
title:
|
|
10
|
-
footerText:
|
|
8
|
+
const k = ({
|
|
9
|
+
title: n,
|
|
10
|
+
footerText: i,
|
|
11
11
|
preview: a,
|
|
12
|
-
cta:
|
|
13
|
-
pdfDownload:
|
|
14
|
-
wordDownload:
|
|
12
|
+
cta: c,
|
|
13
|
+
pdfDownload: m,
|
|
14
|
+
wordDownload: o,
|
|
15
|
+
onZoomClick: t
|
|
15
16
|
}) => {
|
|
16
|
-
const [
|
|
17
|
+
const [d, f] = h(!1), p = (s) => {
|
|
18
|
+
f(s), s && t && t();
|
|
19
|
+
};
|
|
17
20
|
if (!a) return;
|
|
18
|
-
const
|
|
21
|
+
const u = /* @__PURE__ */ e(x, { className: "bg-primary-700 size-8 rounded p-2 opacity-80 hover:opacity-100" });
|
|
19
22
|
return /* @__PURE__ */ l("div", { className: "bg-neutral-25 relative mt-24 flex flex-col items-center gap-4 rounded border border-neutral-200 p-6 pt-44 lg:max-w-76 xl:max-w-96.5", children: [
|
|
20
23
|
/* @__PURE__ */ l("div", { className: "absolute -top-24 border border-neutral-200 shadow", children: [
|
|
21
24
|
/* @__PURE__ */ e("div", { className: "h-full max-h-64.5 w-full max-w-50 overflow-hidden", children: a.small }),
|
|
22
|
-
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(
|
|
25
|
+
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(b, { trigger: u, isOpen: d, setIsOpen: p, children: a.large }) })
|
|
23
26
|
] }),
|
|
24
|
-
/* @__PURE__ */ e(
|
|
25
|
-
/* @__PURE__ */ e(r, { className: "w-full", variant: "primary-green", children:
|
|
27
|
+
/* @__PURE__ */ e(w, { className: "text-medium text-center text-neutral-800 [&_p:last-child]:mb-0", content: n }),
|
|
28
|
+
/* @__PURE__ */ e(r, { className: "w-full", variant: "primary-green", children: c }),
|
|
26
29
|
/* @__PURE__ */ e("div", { className: "h-px w-full bg-neutral-200" }),
|
|
27
30
|
/* @__PURE__ */ l("div", { className: "flex w-full flex-col items-center gap-6", children: [
|
|
28
|
-
/* @__PURE__ */ e("p", { className: "text-small text-neutral-800", children:
|
|
31
|
+
/* @__PURE__ */ e("p", { className: "text-small text-neutral-800", children: i }),
|
|
29
32
|
/* @__PURE__ */ l("div", { className: "flex w-full gap-4", children: [
|
|
30
|
-
/* @__PURE__ */ e(r, { className: "w-full", variant: "secondary-black", children:
|
|
31
|
-
/* @__PURE__ */ e(r, { className: "w-full", variant: "secondary-black", children:
|
|
33
|
+
/* @__PURE__ */ e(r, { className: "w-full", variant: "secondary-black", children: m }),
|
|
34
|
+
/* @__PURE__ */ e(r, { className: "w-full", variant: "secondary-black", children: o })
|
|
32
35
|
] })
|
|
33
36
|
] })
|
|
34
37
|
] });
|
|
35
38
|
};
|
|
36
39
|
export {
|
|
37
|
-
|
|
40
|
+
k as PreviewDownload
|
|
38
41
|
};
|
|
@@ -1,13 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
import "react";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
/* @__PURE__ */ e(
|
|
10
|
-
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as e, jsxs as n } from "react/jsx-runtime";
|
|
3
|
+
import { useRef as s } from "react";
|
|
4
|
+
import { SectionHeading as c } from "./SectionHeading.js";
|
|
5
|
+
import { Markdown as m } from "./Markdown.js";
|
|
6
|
+
import { LinkWrapper as i } from "./LinkWrapper.js";
|
|
7
|
+
const w = ({ title: l, documentPreview: o, cta: a, onPreviewScroll: r }) => {
|
|
8
|
+
const t = s(!1);
|
|
9
|
+
return /* @__PURE__ */ e("section", { className: "bg-secondary-50 px-4 py-10 text-neutral-900 md:px-8 xl:px-30", children: /* @__PURE__ */ n("div", { className: "mx-auto flex w-full max-w-300 flex-col items-center gap-8", children: [
|
|
10
|
+
/* @__PURE__ */ e(c, { title: l, titleClass: "text-neutral-800 font-bold font-inter text-large" }),
|
|
11
|
+
/* @__PURE__ */ e(
|
|
12
|
+
"div",
|
|
13
|
+
{
|
|
14
|
+
className: "flex max-h-89.75 w-full overflow-auto border border-neutral-200 bg-white px-8 py-8 md:py-16",
|
|
15
|
+
onScroll: () => {
|
|
16
|
+
!t.current && r && (t.current = !0, r());
|
|
17
|
+
},
|
|
18
|
+
children: /* @__PURE__ */ e(m, { useCustom: !1, className: "select-none", content: o })
|
|
19
|
+
}
|
|
20
|
+
),
|
|
21
|
+
/* @__PURE__ */ e(i, { className: "w-full md:w-auto", children: a })
|
|
22
|
+
] }) });
|
|
23
|
+
};
|
|
11
24
|
export {
|
|
12
|
-
|
|
25
|
+
w as PreviewSection
|
|
13
26
|
};
|
|
@@ -77,6 +77,7 @@ export interface FreeDocumentModalProps {
|
|
|
77
77
|
export interface ImageWithPreviewProps {
|
|
78
78
|
small: ReactNode;
|
|
79
79
|
large: ReactNode;
|
|
80
|
+
onZoomClick?: () => void;
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
export type InputFieldData = {
|
|
@@ -133,12 +134,14 @@ export interface PreviewDownloadProps {
|
|
|
133
134
|
footerText: string;
|
|
134
135
|
pdfDownload: ReactNode;
|
|
135
136
|
wordDownload: ReactNode;
|
|
137
|
+
onZoomClick?: () => void;
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
export interface PreviewSectionProps {
|
|
139
141
|
title: string;
|
|
140
142
|
documentPreview: string;
|
|
141
143
|
cta: ReactNode;
|
|
144
|
+
onPreviewScroll?: () => void;
|
|
142
145
|
}
|
|
143
146
|
|
|
144
147
|
export interface ProductInfoProps {
|
|
@@ -1,55 +1,45 @@
|
|
|
1
1
|
import { jsx as l, jsxs as e } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { clsx as
|
|
4
|
-
import { Markdown as
|
|
3
|
+
import { clsx as i } from "clsx";
|
|
4
|
+
import { Markdown as o } from "./Markdown.js";
|
|
5
5
|
import { LinkWrapper as f } from "./LinkWrapper.js";
|
|
6
|
-
const
|
|
7
|
-
title:
|
|
6
|
+
const j = ({
|
|
7
|
+
title: m,
|
|
8
8
|
content: r,
|
|
9
|
-
benefits:
|
|
10
|
-
stepsSlot:
|
|
9
|
+
benefits: t = [],
|
|
10
|
+
stepsSlot: d,
|
|
11
11
|
belowStepsSlot: g,
|
|
12
|
-
cta:
|
|
13
|
-
image:
|
|
12
|
+
cta: s,
|
|
13
|
+
image: x,
|
|
14
14
|
skipCtaWrapper: h = !1,
|
|
15
|
-
sectionClassName:
|
|
16
|
-
innerClassName:
|
|
15
|
+
sectionClassName: c,
|
|
16
|
+
innerClassName: n
|
|
17
17
|
}) => {
|
|
18
|
-
const
|
|
19
|
-
if (
|
|
20
|
-
const a =
|
|
21
|
-
return /* @__PURE__ */ l(
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
className:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
/* @__PURE__ */ e("div", { className: "order-2 flex min-h-0 flex-col gap-6 lg:order-1", children: [
|
|
36
|
-
a && /* @__PURE__ */ l("div", { className: "text-left lg:hidden", children: /* @__PURE__ */ l(t, { content: r, className: p }) }),
|
|
37
|
-
x,
|
|
38
|
-
g,
|
|
39
|
-
N
|
|
40
|
-
] })
|
|
41
|
-
] })
|
|
42
|
-
] }) })
|
|
43
|
-
}
|
|
44
|
-
);
|
|
18
|
+
const p = "bg-primary-50 px-6 pb-10 pt-16 lg:px-8 lg:pb-12 lg:pt-16 xl:px-0", w = "from-primary-900 via-primary-700 to-primary-900 mx-auto flex flex-col justify-between gap-8 rounded-2xl bg-linear-to-bl p-6 text-white md:flex-row md:items-center md:gap-10 md:p-10 lg:gap-16 lg:p-16 xl:mx-auto xl:max-w-300";
|
|
19
|
+
if (d != null) {
|
|
20
|
+
const a = h ? /* @__PURE__ */ l("div", { className: "w-full lg:w-fit", children: s }) : /* @__PURE__ */ l(f, { className: "w-full lg:w-fit", children: s });
|
|
21
|
+
return /* @__PURE__ */ l("section", { className: i("max-w-full overflow-x-hidden", c ?? p), children: /* @__PURE__ */ l("div", { className: i("bg-law-genius-section mx-auto w-full max-w-6xl rounded-3xl px-8 pb-8 pt-16 text-white shadow-[0_25px_80px_rgba(3,42,56,0.35)] sm:px-10 sm:pb-10 sm:pt-16", n), children: /* @__PURE__ */ e("div", { className: "flex w-full flex-col gap-8 lg:gap-10", children: [
|
|
22
|
+
/* @__PURE__ */ e("div", { className: "flex flex-col gap-4 text-center text-white", children: [
|
|
23
|
+
/* @__PURE__ */ l("h2", { className: "lg:text-super-large text-3xl font-bold lg:leading-tight", children: m }),
|
|
24
|
+
/* @__PURE__ */ l(o, { content: r, className: "[&_p]:text-medium [&_p]:text-white/80 [&_p:last-child]:mb-0" })
|
|
25
|
+
] }),
|
|
26
|
+
/* @__PURE__ */ e("div", { className: "flex w-full flex-col gap-8 lg:grid lg:grid-cols-[minmax(0,1fr)_minmax(0,1.05fr)] lg:items-stretch lg:gap-10", children: [
|
|
27
|
+
/* @__PURE__ */ e("div", { className: "flex min-h-0 flex-col gap-6", children: [
|
|
28
|
+
d,
|
|
29
|
+
g,
|
|
30
|
+
a
|
|
31
|
+
] }),
|
|
32
|
+
/* @__PURE__ */ l("div", { className: "relative z-10 mx-auto flex min-h-0 w-full max-w-77 shrink-0 items-center justify-center overflow-hidden rounded-lg md:mx-0 md:max-w-none", children: x })
|
|
33
|
+
] })
|
|
34
|
+
] }) }) });
|
|
45
35
|
}
|
|
46
|
-
return /* @__PURE__ */ l("section", { className:
|
|
36
|
+
return /* @__PURE__ */ l("section", { className: i("max-w-full overflow-x-hidden", c ?? p), children: /* @__PURE__ */ e("div", { className: i(w, n), children: [
|
|
47
37
|
/* @__PURE__ */ e("div", { className: "flex flex-col gap-8", children: [
|
|
48
38
|
/* @__PURE__ */ e("div", { className: "flex flex-col gap-4", children: [
|
|
49
|
-
/* @__PURE__ */ l("h2", { className: "text-super-large leading-tight font-bold", children:
|
|
50
|
-
/* @__PURE__ */ l(
|
|
39
|
+
/* @__PURE__ */ l("h2", { className: "text-super-large leading-tight font-bold", children: m }),
|
|
40
|
+
/* @__PURE__ */ l(o, { content: r, className: "[&_p:last-child]:mb-0" })
|
|
51
41
|
] }),
|
|
52
|
-
|
|
42
|
+
t.length > 0 && /* @__PURE__ */ l("div", { className: "flex flex-wrap gap-3", children: t.map((a) => /* @__PURE__ */ e(
|
|
53
43
|
"span",
|
|
54
44
|
{
|
|
55
45
|
className: "bg-primary-50 text-small text-primary-800 flex flex-nowrap gap-1 rounded-md p-1 font-semibold",
|
|
@@ -60,11 +50,11 @@ const C = ({
|
|
|
60
50
|
},
|
|
61
51
|
a.id
|
|
62
52
|
)) }),
|
|
63
|
-
/* @__PURE__ */ l(f, { className: "w-full md:w-fit", children:
|
|
53
|
+
/* @__PURE__ */ l(f, { className: "w-full md:w-fit", children: s })
|
|
64
54
|
] }),
|
|
65
|
-
/* @__PURE__ */ l("div", { className: "mx-auto w-full max-w-77 md:mx-0 md:min-w-74", children:
|
|
55
|
+
/* @__PURE__ */ l("div", { className: "mx-auto w-full max-w-77 md:mx-0 md:min-w-74", children: x })
|
|
66
56
|
] }) });
|
|
67
57
|
};
|
|
68
58
|
export {
|
|
69
|
-
|
|
59
|
+
j as RatafiaSection
|
|
70
60
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as n, jsxs as x } from "react/jsx-runtime";
|
|
2
2
|
import { clsx as c } from "clsx";
|
|
3
3
|
const t = ({
|
|
4
|
-
firstColumn:
|
|
5
|
-
secondColumn:
|
|
6
|
-
className:
|
|
7
|
-
containerClassName:
|
|
8
|
-
}) => /* @__PURE__ */
|
|
4
|
+
firstColumn: e,
|
|
5
|
+
secondColumn: o,
|
|
6
|
+
className: m,
|
|
7
|
+
containerClassName: r
|
|
8
|
+
}) => /* @__PURE__ */ n("section", { className: m ?? "", children: /* @__PURE__ */ x(
|
|
9
9
|
"div",
|
|
10
10
|
{
|
|
11
11
|
className: c(
|
|
12
|
-
"mx-auto flex
|
|
13
|
-
|
|
12
|
+
"container mx-auto flex max-w-300 min-w-0 flex-col justify-center px-4 py-10 md:flex-row md:flex-nowrap md:px-8",
|
|
13
|
+
r
|
|
14
14
|
),
|
|
15
15
|
children: [
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
e,
|
|
17
|
+
o
|
|
18
18
|
]
|
|
19
19
|
}
|
|
20
20
|
) });
|