@npm_leadtech/legal-contracts-ui 0.87.1 → 0.87.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.
@@ -13,7 +13,7 @@ export declare interface AboutUsTemplateProps {
13
13
  howWeHelp: WeHelpSectionProps;
14
14
  guidelines: GuidelinesSectionProps;
15
15
  experts: ExpertsSectionProps;
16
- trustPilot: ReactNode;
16
+ trustpilot: TrustpilotSectionProps;
17
17
  partners: PartnersSectionProps;
18
18
  cta: CtaSectionProps;
19
19
  contactUs: ContactUsSectionProps;
@@ -128,6 +128,11 @@ export interface StorylineProps {
128
128
  }[];
129
129
  }
130
130
 
131
+ export interface TrustpilotSectionProps {
132
+ header: SectionHeadingProps;
133
+ children: ReactNode;
134
+ }
135
+
131
136
  export interface ValuesSectionProps {
132
137
  title: string;
133
138
  children: ReactNode;
@@ -1,42 +1,43 @@
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
- import { Storyline as d } from "./Storyline.js";
5
- import { WeHelpSection as b } from "./WeHelpSection.js";
6
- import { GuidelinesSection as h } from "./GuidelinesSection.js";
7
- import { ExpertsSection as w } from "./ExpertsSection.js";
8
- import { PartnersSection as N } from "./PartnersSection.js";
9
- import { CtaSection as j } from "./CtaSection.js";
10
- import { ContactUsSection as y } from "./ContactUsSection.js";
11
- import { Jumbotron2 as C } from "./Jumbotron2.js";
12
- import { IntroSection as U } from "./IntroSection.js";
13
- const W = ({
14
- jumbotron: r,
15
- intro: t,
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";
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 { PartnersSection as C } from "./PartnersSection.js";
9
+ import { CtaSection as N } from "./CtaSection.js";
10
+ import { ContactUsSection as T } from "./ContactUsSection.js";
11
+ import { Jumbotron2 as U } from "./Jumbotron2.js";
12
+ import { IntroSection as g } from "./IntroSection.js";
13
+ import { TrustpilotSection as h } from "./TrustpilotSection.js";
14
+ const v = ({
15
+ jumbotron: t,
16
+ intro: r,
16
17
  mission: m,
17
- coreValues: e,
18
- storyline: i,
18
+ coreValues: i,
19
+ storyline: e,
19
20
  howWeHelp: n,
20
- guidelines: l,
21
- experts: s,
22
- trustPilot: c,
23
- partners: f,
24
- cta: p,
21
+ guidelines: p,
22
+ experts: f,
23
+ trustpilot: s,
24
+ partners: c,
25
+ cta: l,
25
26
  contactUs: a
26
- }) => /* @__PURE__ */ x("main", { className: "mx-auto flex w-full flex-1 flex-col text-neutral-800", children: [
27
- /* @__PURE__ */ o(C, { ...r }),
28
- /* @__PURE__ */ o(U, { ...t, className: "bg-primary-50" }),
29
- /* @__PURE__ */ o(S, { ...m }),
30
- /* @__PURE__ */ o(u, { ...e }),
31
- /* @__PURE__ */ o(d, { ...i }),
32
- /* @__PURE__ */ o(b, { ...n }),
33
- /* @__PURE__ */ o(h, { ...l }),
34
- /* @__PURE__ */ o(w, { ...s }),
35
- /* @__PURE__ */ o("div", { className: "w-full max-w-254 md:h-34", children: c }),
36
- /* @__PURE__ */ o(N, { ...f }),
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 }),
32
+ /* @__PURE__ */ o(b, { ...e }),
33
+ /* @__PURE__ */ o(d, { ...n }),
37
34
  /* @__PURE__ */ o(j, { ...p }),
38
- /* @__PURE__ */ o(y, { ...a })
35
+ /* @__PURE__ */ o(y, { ...f }),
36
+ /* @__PURE__ */ o(h, { ...s }),
37
+ /* @__PURE__ */ o(C, { ...c }),
38
+ /* @__PURE__ */ o(N, { ...l }),
39
+ /* @__PURE__ */ o(T, { ...a })
39
40
  ] });
40
41
  export {
41
- W as AboutUsTemplate
42
+ v as AboutUsTemplate
42
43
  };
@@ -0,0 +1,18 @@
1
+ import { FC } from 'react';
2
+ import { ReactNode } from 'react';
3
+
4
+ export declare const AiLegalDocumentInsightsMockTabs: FC<AiLegalDocumentInsightsMockTabsProps>;
5
+
6
+ export declare interface AiLegalDocumentInsightsMockTabsProps {
7
+ tabs: AiLegalDocumentInsightsTab[];
8
+ /** Initial tab id; defaults to first tab */
9
+ defaultTabId?: string;
10
+ className?: string;
11
+ }
12
+
13
+ export declare interface AiLegalDocumentInsightsTab {
14
+ id: string;
15
+ label: string;
16
+ content: ReactNode;
17
+ }
18
+
@@ -0,0 +1,50 @@
1
+ "use client";
2
+ import { jsxs as m, jsx as n } from "react/jsx-runtime";
3
+ import { useId as p, useState as u } from "react";
4
+ import { Button as x } from "./Button.js";
5
+ const g = ({
6
+ tabs: t,
7
+ defaultTabId: r,
8
+ className: d = ""
9
+ }) => {
10
+ const i = p(), o = t[0]?.id ?? "", [s, c] = u(r ?? o);
11
+ if (t.length === 0) return null;
12
+ const l = t.find((e) => e.id === s) ?? t[0];
13
+ return /* @__PURE__ */ m("div", { className: `flex flex-col gap-4 ${d}`.trim(), children: [
14
+ /* @__PURE__ */ n("div", { className: "inline-flex gap-1 rounded-xl bg-neutral-100 p-1", role: "tablist", "aria-label": "Insight preview", children: t.map((e) => {
15
+ const a = l.id === e.id;
16
+ return /* @__PURE__ */ n(
17
+ x,
18
+ {
19
+ type: "button",
20
+ role: "tab",
21
+ id: `${i}-${e.id}-tab`,
22
+ "aria-selected": a,
23
+ "aria-controls": `${i}-${e.id}-panel`,
24
+ tabIndex: a ? 0 : -1,
25
+ variant: a ? "primary-white" : "tertiary-thin",
26
+ size: "small",
27
+ className: `text-small rounded-lg px-4 py-2 font-bold shadow-none ${a ? "text-primary-900 shadow-sm" : "text-neutral-600"}`,
28
+ onClick: () => {
29
+ c(e.id);
30
+ },
31
+ children: e.label
32
+ },
33
+ e.id
34
+ );
35
+ }) }),
36
+ /* @__PURE__ */ n(
37
+ "div",
38
+ {
39
+ role: "tabpanel",
40
+ id: `${i}-${l.id}-panel`,
41
+ "aria-labelledby": `${i}-${l.id}-tab`,
42
+ className: "text-medium text-neutral-800",
43
+ children: l.content
44
+ }
45
+ )
46
+ ] });
47
+ };
48
+ export {
49
+ g as AiLegalDocumentInsightsMockTabs
50
+ };
@@ -0,0 +1,32 @@
1
+ import { FC } from 'react';
2
+ import { ReactNode } from 'react';
3
+
4
+ export declare interface AiLegalDocumentInsightCard {
5
+ id: string;
6
+ title: string;
7
+ description: string;
8
+ state?: 'soon' | 'default';
9
+ }
10
+
11
+ export declare const AiLegalDocumentInsightsSection: FC<AiLegalDocumentInsightsSectionProps>;
12
+
13
+ export declare interface AiLegalDocumentInsightsSectionProps {
14
+ heading: {
15
+ title: string;
16
+ description: string;
17
+ };
18
+ insightCards: AiLegalDocumentInsightCard[];
19
+ tabs: AiLegalDocumentInsightsTab[];
20
+ defaultTabId?: string;
21
+ /** Optional screenshot behind / beside the mock */
22
+ mockImageSrc?: string;
23
+ mockImageAlt?: string;
24
+ className?: string;
25
+ }
26
+
27
+ export interface AiLegalDocumentInsightsTab {
28
+ id: string;
29
+ label: string;
30
+ content: ReactNode;
31
+ }
32
+
@@ -0,0 +1,43 @@
1
+ import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
+ import { AiLegalDocumentInsightsMockTabs as m } from "./AiLegalDocumentInsightsMockTabs.js";
3
+ import { SectionHeading as c } from "./SectionHeading.js";
4
+ const g = ({
5
+ heading: a,
6
+ insightCards: i,
7
+ tabs: n,
8
+ defaultTabId: r,
9
+ mockImageSrc: s,
10
+ mockImageAlt: o = "",
11
+ className: d = ""
12
+ }) => /* @__PURE__ */ e("section", { className: `bg-neutral-25 px-6 py-16 sm:px-10 lg:px-24 ${d}`.trim(), children: /* @__PURE__ */ l("div", { className: "mx-auto grid max-w-6xl gap-10 lg:grid-cols-2", children: [
13
+ /* @__PURE__ */ l("div", { className: "space-y-8", children: [
14
+ /* @__PURE__ */ e(c, { title: a.title, description: a.description, align: "start" }),
15
+ /* @__PURE__ */ e("div", { className: "space-y-5", children: i.map((t) => /* @__PURE__ */ l(
16
+ "div",
17
+ {
18
+ className: `rounded-2xl border p-5 ${t.state === "soon" ? "border-neutral-200 bg-neutral-50 text-neutral-500" : "border-transparent bg-white shadow-sm"}`,
19
+ children: [
20
+ /* @__PURE__ */ l("div", { className: "flex items-center gap-3", children: [
21
+ /* @__PURE__ */ e(
22
+ "span",
23
+ {
24
+ className: `text-small inline-flex items-center rounded-md px-3 py-1 font-bold ${t.state === "soon" ? "bg-neutral-200 text-neutral-700" : "bg-primary-100 text-primary-800"}`,
25
+ children: t.title
26
+ }
27
+ ),
28
+ t.state === "soon" && /* @__PURE__ */ e("span", { className: "text-extra-small font-semibold text-neutral-500 uppercase", children: "Coming soon" })
29
+ ] }),
30
+ /* @__PURE__ */ e("p", { className: "text-medium mt-3 text-neutral-800", children: t.description })
31
+ ]
32
+ },
33
+ t.id
34
+ )) })
35
+ ] }),
36
+ /* @__PURE__ */ l("div", { className: "relative overflow-hidden rounded-[32px] bg-neutral-200 shadow-[0_30px_80px_rgba(3,42,56,0.2)]", children: [
37
+ s != null && s !== "" && /* @__PURE__ */ e("img", { src: s, alt: o, width: 572, height: 622, className: "h-full w-full object-cover" }),
38
+ /* @__PURE__ */ e("div", { className: "absolute inset-0 flex flex-col justify-end bg-gradient-to-t from-neutral-900/80 via-neutral-900/20 to-transparent p-6 lg:p-8", children: /* @__PURE__ */ e("div", { className: "rounded-2xl bg-white/95 p-5 shadow-lg backdrop-blur-sm", children: /* @__PURE__ */ e(m, { tabs: n, defaultTabId: r }) }) })
39
+ ] })
40
+ ] }) });
41
+ export {
42
+ g as AiLegalDocumentInsightsSection
43
+ };
@@ -1,18 +1,46 @@
1
1
  import { FC } from 'react';
2
2
  import { ReactNode } from 'react';
3
3
 
4
+ export interface AiLegalDocumentInsightCard {
5
+ id: string;
6
+ title: string;
7
+ description: string;
8
+ state?: 'soon' | 'default';
9
+ }
10
+
11
+ export interface AiLegalDocumentInsightsSectionProps {
12
+ heading: {
13
+ title: string;
14
+ description: string;
15
+ };
16
+ insightCards: AiLegalDocumentInsightCard[];
17
+ tabs: AiLegalDocumentInsightsTab[];
18
+ defaultTabId?: string;
19
+ /** Optional screenshot behind / beside the mock */
20
+ mockImageSrc?: string;
21
+ mockImageAlt?: string;
22
+ className?: string;
23
+ }
24
+
25
+ export interface AiLegalDocumentInsightsTab {
26
+ id: string;
27
+ label: string;
28
+ content: ReactNode;
29
+ }
30
+
4
31
  export declare const AiLegalDocumentReviewerTemplate: FC<AiLegalDocumentReviewerTemplateProps>;
5
32
 
6
33
  export declare type AiLegalDocumentReviewerTemplateProps = {
7
- hero: Omit<Hero2SectionProps, 'variant'>;
34
+ hero: Hero2SectionProps;
8
35
  howItWorks: HowItWorksSectionProps;
36
+ /** Same shape as e-sign `fastAndSimple`; template forces `variant="lawgeniusDark"`. */
9
37
  fastAndSimple: Omit<FastAndSimpleSectionProps, 'variant'>;
10
- insights: FeaturesSectionProps;
38
+ insights: AiLegalDocumentInsightsSectionProps;
11
39
  signAndSend: Omit<SignAndSendSectionProps, 'rightColumn' | 'variant' | 'leadingIcon'> & {
12
40
  leadingIcon: ReactNode;
13
41
  upload: DocumentReviewUploadCardProps;
14
42
  };
15
- trustPilot: ReactNode;
43
+ trustpilot: TrustpilotSectionProps;
16
44
  askQuestions: Omit<LawgeniusAskQuestionsSectionProps, 'illustration'> & {
17
45
  illustration: LawgeniusFloatingTagsIllustrationProps;
18
46
  };
@@ -56,22 +84,6 @@ export interface FastAndSimpleSectionProps {
56
84
  variant: 'esign' | 'ratafia';
57
85
  }
58
86
 
59
- export interface Features {
60
- id: string;
61
- title: string;
62
- icon: ReactNode | null;
63
- description: string;
64
- upcoming: boolean;
65
- upcomingText?: string;
66
- }
67
-
68
- export interface FeaturesSectionProps {
69
- title: string;
70
- description: string;
71
- features: Features[];
72
- rightImage: ReactNode | null;
73
- }
74
-
75
87
  export type Hero2Highlight = {
76
88
  id: string;
77
89
  label: string;
@@ -132,6 +144,14 @@ export interface QuickBenefit {
132
144
  icon: ReactNode;
133
145
  }
134
146
 
147
+ export interface SectionHeadingProps {
148
+ title: string;
149
+ description?: string;
150
+ align?: 'start' | 'center';
151
+ titleClass?: string;
152
+ className?: string;
153
+ }
154
+
135
155
  export interface SignAndSendSectionProps {
136
156
  title: string;
137
157
  description: string;
@@ -146,6 +166,11 @@ export interface SignAndSendSectionProps {
146
166
  variant?: 'default' | 'lawgeniusDark';
147
167
  }
148
168
 
169
+ export interface TrustpilotSectionProps {
170
+ header: SectionHeadingProps;
171
+ children: ReactNode;
172
+ }
173
+
149
174
  export interface UploadZoneProps {
150
175
  uploadPromptText: string;
151
176
  addDocumentLabel: string;
@@ -1,49 +1,50 @@
1
- import { jsxs as g, jsx as o } from "react/jsx-runtime";
2
- import { DocumentReviewUploadCard as x } from "./DocumentReviewUploadCard.js";
3
- import { LawgeniusAskQuestionsSection as w } from "./LawgeniusAskQuestionsSection.js";
4
- import { LawgeniusFloatingTagsIllustration as S } from "./LawgeniusFloatingTagsIllustration.js";
5
- import { SignAndSendSection as v } from "./SignAndSendSection.js";
6
- import { Hero2Section as h } from "./Hero2Section.js";
7
- import { HowItWorksSection as k } from "./HowItWorksSection.js";
8
- import { FastAndSimpleSection as R } from "./FastAndSimpleSection.js";
9
- import { FeaturesSection as A } from "./FeaturesSection.js";
10
- import { FaqSection as D } from "./FaqSection.js";
11
- const U = ({
1
+ import { jsxs as d, jsx as o } from "react/jsx-runtime";
2
+ import { AiLegalDocumentInsightsSection as x } from "./AiLegalDocumentInsightsSection.js";
3
+ import { DocumentReviewUploadCard as S } from "./DocumentReviewUploadCard.js";
4
+ import { FaqSection as w } from "./FaqSection.js";
5
+ import { FastAndSimpleSection as h } from "./FastAndSimpleSection.js";
6
+ import { Hero2Section as k } from "./Hero2Section.js";
7
+ import { HowItWorksSection as v } from "./HowItWorksSection.js";
8
+ import { LawgeniusAskQuestionsSection as A } from "./LawgeniusAskQuestionsSection.js";
9
+ import { LawgeniusFloatingTagsIllustration as D } from "./LawgeniusFloatingTagsIllustration.js";
10
+ import { SignAndSendSection as R } from "./SignAndSendSection.js";
11
+ import { TrustpilotSection as I } from "./TrustpilotSection.js";
12
+ const O = ({
12
13
  hero: t,
13
- howItWorks: a,
14
- fastAndSimple: i,
15
- insights: e,
16
- signAndSend: r,
17
- trustPilot: n,
14
+ howItWorks: i,
15
+ fastAndSimple: e,
16
+ insights: r,
17
+ signAndSend: n,
18
+ trustpilot: a,
18
19
  askQuestions: s,
19
20
  faq: m
20
21
  }) => {
21
- const { ...l } = t, { upload: c, leadingIcon: p, ...u } = r, { illustration: d, ...f } = s;
22
- return /* @__PURE__ */ g("main", { className: "flex w-full flex-col", children: [
23
- /* @__PURE__ */ o(h, { ...l, variant: "ratafia" }),
24
- /* @__PURE__ */ o(k, { ...a }),
25
- /* @__PURE__ */ o(R, { ...i, variant: "ratafia" }),
26
- /* @__PURE__ */ o(A, { ...e }),
22
+ const { ...l } = t, { upload: c, leadingIcon: p, ...u } = n, { illustration: f, ...g } = s;
23
+ return /* @__PURE__ */ d("main", { className: "flex w-full flex-col", children: [
24
+ /* @__PURE__ */ o(k, { ...l }),
25
+ /* @__PURE__ */ o(v, { ...i }),
26
+ /* @__PURE__ */ o(h, { ...e, variant: "ratafia" }),
27
+ /* @__PURE__ */ o(x, { ...r }),
27
28
  /* @__PURE__ */ o(
28
- v,
29
+ R,
29
30
  {
30
31
  ...u,
31
32
  variant: "lawgeniusDark",
32
33
  leadingIcon: p,
33
- rightColumn: /* @__PURE__ */ o(x, { ...c, variant: "embeddedOnDark" })
34
+ rightColumn: /* @__PURE__ */ o(S, { ...c, variant: "embeddedOnDark" })
34
35
  }
35
36
  ),
36
- /* @__PURE__ */ o("div", { className: "w-full max-w-254 md:h-34", children: n }),
37
+ /* @__PURE__ */ o(I, { ...a }),
37
38
  /* @__PURE__ */ o(
38
- w,
39
+ A,
39
40
  {
40
- ...f,
41
- illustration: /* @__PURE__ */ o(S, { ...d })
41
+ ...g,
42
+ illustration: /* @__PURE__ */ o(D, { ...f })
42
43
  }
43
44
  ),
44
- /* @__PURE__ */ o("section", { className: "bg-neutral-25 px-6 py-16 sm:px-10 lg:px-32", children: /* @__PURE__ */ o(D, { ...m, className: "mx-auto max-w-6xl space-y-6" }) })
45
+ /* @__PURE__ */ o("section", { className: "bg-neutral-25 px-6 py-16 sm:px-10 lg:px-32", children: /* @__PURE__ */ o(w, { ...m, className: "mx-auto max-w-6xl space-y-6" }) })
45
46
  ] });
46
47
  };
47
48
  export {
48
- U as AiLegalDocumentReviewerTemplate
49
+ O as AiLegalDocumentReviewerTemplate
49
50
  };
@@ -0,0 +1,23 @@
1
+ import { FC } from 'react';
2
+
3
+ export declare const BenefitsOfSigningSection: FC<BenefitsOfSigningSectionProps>;
4
+
5
+ export declare interface BenefitsOfSigningSectionProps {
6
+ title: string;
7
+ description: string;
8
+ benefits: OnlineBenefit[];
9
+ upcomingFeature: {
10
+ title: string;
11
+ description: string;
12
+ };
13
+ keyFactsIcon: string;
14
+ requestIcon: string;
15
+ overviewImageSrc: string;
16
+ overviewImageAlt: string;
17
+ }
18
+
19
+ export declare interface OnlineBenefit {
20
+ title: string;
21
+ description: string;
22
+ }
23
+
@@ -0,0 +1,56 @@
1
+ import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
+ import { SectionHeading as o } from "./SectionHeading.js";
3
+ const p = ({
4
+ title: i,
5
+ description: s,
6
+ benefits: r,
7
+ upcomingFeature: a,
8
+ keyFactsIcon: c,
9
+ requestIcon: n,
10
+ overviewImageSrc: d,
11
+ overviewImageAlt: m
12
+ }) => /* @__PURE__ */ e("section", { className: "bg-white px-4 py-16", children: /* @__PURE__ */ l("div", { className: "mx-auto flex w-full max-w-6xl flex-col gap-10 lg:flex-row", children: [
13
+ /* @__PURE__ */ l("div", { className: "flex-1 space-y-6", children: [
14
+ /* @__PURE__ */ e(o, { title: i, description: s, align: "start" }),
15
+ /* @__PURE__ */ l("div", { className: "space-y-4", children: [
16
+ r.map((t) => /* @__PURE__ */ l(
17
+ "article",
18
+ {
19
+ className: "bg-neutral-25 rounded-lg p-6",
20
+ style: { boxShadow: "var(--shadow-small)" },
21
+ children: [
22
+ /* @__PURE__ */ l("div", { className: "bg-primary-800 text-small text-neutral-25 mb-4 inline-flex items-center gap-2 rounded px-3 py-1 font-semibold", children: [
23
+ /* @__PURE__ */ e("img", { src: c, alt: "Key facts icon", width: 24, height: 24 }),
24
+ t.title
25
+ ] }),
26
+ /* @__PURE__ */ e("p", { className: "text-medium text-neutral-800", children: t.description })
27
+ ]
28
+ },
29
+ t.title
30
+ )),
31
+ /* @__PURE__ */ l("article", { className: "bg-neutral-25 rounded-lg p-6 opacity-70", style: { boxShadow: "var(--shadow-small)" }, children: [
32
+ /* @__PURE__ */ l("div", { className: "mb-4 flex flex-wrap items-center gap-3", children: [
33
+ /* @__PURE__ */ l("div", { className: "text-small text-primary-900 inline-flex items-center gap-2 rounded bg-white px-3 py-1 font-semibold", children: [
34
+ /* @__PURE__ */ e("img", { src: n, alt: "Request signature icon", width: 24, height: 24 }),
35
+ a.title
36
+ ] }),
37
+ /* @__PURE__ */ e("span", { className: "text-extra-small text-primary-900 rounded bg-neutral-200 px-2 py-1 font-semibold", children: "Coming soon" })
38
+ ] }),
39
+ /* @__PURE__ */ e("p", { className: "text-medium text-neutral-800", children: a.description })
40
+ ] })
41
+ ] })
42
+ ] }),
43
+ /* @__PURE__ */ e("div", { className: "flex-1", children: /* @__PURE__ */ e(
44
+ "img",
45
+ {
46
+ src: d,
47
+ alt: m,
48
+ width: 624,
49
+ height: 664,
50
+ className: "h-full w-full rounded-lg object-cover shadow-lg"
51
+ }
52
+ ) })
53
+ ] }) });
54
+ export {
55
+ p as BenefitsOfSigningSection
56
+ };
@@ -1,14 +1,28 @@
1
1
  import { FC } from 'react';
2
2
  import { ReactNode } from 'react';
3
3
 
4
+ export interface BenefitsOfSigningSectionProps {
5
+ title: string;
6
+ description: string;
7
+ benefits: OnlineBenefit[];
8
+ upcomingFeature: {
9
+ title: string;
10
+ description: string;
11
+ };
12
+ keyFactsIcon: string;
13
+ requestIcon: string;
14
+ overviewImageSrc: string;
15
+ overviewImageAlt: string;
16
+ }
17
+
4
18
  export declare const ElectronicSignatureTemplate: FC<ElectronicSignatureTemplateProps>;
5
19
 
6
20
  export declare interface ElectronicSignatureTemplateProps {
7
- hero: Omit<Hero2SectionProps, 'variant'>;
21
+ hero: Hero2SectionProps;
8
22
  howItWorks: HowItWorksSectionProps;
9
- fastAndSimple: Omit<FastAndSimpleSectionProps, 'variant'>;
10
- benefits: FeaturesSectionProps;
11
- trustPilot: ReactNode;
23
+ fastAndSimple: FastAndSimpleSectionProps;
24
+ benefitsOfSigning: BenefitsOfSigningSectionProps;
25
+ trustpilot: TrustpilotSectionProps;
12
26
  signAndSend: SignAndSendSectionProps;
13
27
  faq: FaqSectionProps;
14
28
  }
@@ -36,22 +50,6 @@ export interface FastAndSimpleSectionProps {
36
50
  variant: 'esign' | 'ratafia';
37
51
  }
38
52
 
39
- export interface Features {
40
- id: string;
41
- title: string;
42
- icon: ReactNode | null;
43
- description: string;
44
- upcoming: boolean;
45
- upcomingText?: string;
46
- }
47
-
48
- export interface FeaturesSectionProps {
49
- title: string;
50
- description: string;
51
- features: Features[];
52
- rightImage: ReactNode | null;
53
- }
54
-
55
53
  export type Hero2Highlight = {
56
54
  id: string;
57
55
  label: string;
@@ -82,6 +80,11 @@ export interface HowItWorksStep {
82
80
  icon: ReactNode;
83
81
  }
84
82
 
83
+ export interface OnlineBenefit {
84
+ title: string;
85
+ description: string;
86
+ }
87
+
85
88
  export interface QuickBenefit {
86
89
  id: string;
87
90
  title: string;
@@ -89,6 +92,14 @@ export interface QuickBenefit {
89
92
  icon: ReactNode;
90
93
  }
91
94
 
95
+ export interface SectionHeadingProps {
96
+ title: string;
97
+ description?: string;
98
+ align?: 'start' | 'center';
99
+ titleClass?: string;
100
+ className?: string;
101
+ }
102
+
92
103
  export interface SignAndSendSectionProps {
93
104
  title: string;
94
105
  description: string;
@@ -103,6 +114,11 @@ export interface SignAndSendSectionProps {
103
114
  variant?: 'default' | 'lawgeniusDark';
104
115
  }
105
116
 
117
+ export interface TrustpilotSectionProps {
118
+ header: SectionHeadingProps;
119
+ children: ReactNode;
120
+ }
121
+
106
122
  export interface UploadZoneProps {
107
123
  uploadPromptText: string;
108
124
  addDocumentLabel: string;
@@ -1,27 +1,28 @@
1
- import { jsxs as l, jsx as o } from "react/jsx-runtime";
2
- import { Hero2Section as s } from "./Hero2Section.js";
3
- import { HowItWorksSection as c } from "./HowItWorksSection.js";
4
- import { FastAndSimpleSection as p } from "./FastAndSimpleSection.js";
5
- import { FeaturesSection as f } from "./FeaturesSection.js";
6
- import { SignAndSendSection as S } from "./SignAndSendSection.js";
7
- import { FaqSection as x } from "./FaqSection.js";
8
- const N = ({
9
- hero: e,
1
+ import { jsxs as c, jsx as o } from "react/jsx-runtime";
2
+ import { Hero2Section as a } from "./Hero2Section.js";
3
+ import { HowItWorksSection as f } from "./HowItWorksSection.js";
4
+ import { FastAndSimpleSection as l } from "./FastAndSimpleSection.js";
5
+ import { BenefitsOfSigningSection as s } from "./BenefitsOfSigningSection.js";
6
+ import { TrustpilotSection as S } from "./TrustpilotSection.js";
7
+ import { SignAndSendSection as x } from "./SignAndSendSection.js";
8
+ import { FaqSection as g } from "./FaqSection.js";
9
+ const T = ({
10
+ hero: t,
10
11
  howItWorks: i,
11
12
  fastAndSimple: r,
12
- benefits: t,
13
- trustPilot: m,
13
+ benefitsOfSigning: m,
14
+ trustpilot: e,
14
15
  signAndSend: n,
15
- faq: a
16
- }) => /* @__PURE__ */ l("main", { className: "w-full flex-1 bg-neutral-50", children: [
17
- /* @__PURE__ */ o(s, { ...e, variant: "esign" }),
18
- /* @__PURE__ */ o(c, { ...i }),
19
- /* @__PURE__ */ o(p, { ...r, variant: "esign" }),
20
- /* @__PURE__ */ o(f, { ...t }),
21
- /* @__PURE__ */ o("div", { className: "w-full max-w-254 md:h-34", children: m }),
22
- /* @__PURE__ */ o(S, { ...n }),
23
- /* @__PURE__ */ o(x, { ...a, className: "mx-auto max-w-4xl px-4 py-16" })
16
+ faq: p
17
+ }) => /* @__PURE__ */ c("main", { className: "w-full flex-1 bg-neutral-50", children: [
18
+ /* @__PURE__ */ o(a, { ...t }),
19
+ /* @__PURE__ */ o(f, { ...i }),
20
+ /* @__PURE__ */ o(l, { ...r }),
21
+ /* @__PURE__ */ o(s, { ...m }),
22
+ /* @__PURE__ */ o(S, { ...e }),
23
+ /* @__PURE__ */ o(x, { ...n }),
24
+ /* @__PURE__ */ o(g, { ...p, className: "mx-auto max-w-4xl px-4 py-16" })
24
25
  ] });
25
26
  export {
26
- N as ElectronicSignatureTemplate
27
+ T as ElectronicSignatureTemplate
27
28
  };