@npm_leadtech/legal-contracts-ui 0.99.5 → 0.99.7
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.
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { jsxs as S, jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
2
|
+
import { IntroSection as u } from "./IntroSection.js";
|
|
3
|
+
import { MissionSection as x } from "./MissionSection.js";
|
|
4
|
+
import { ValuesSection as b } from "./ValuesSection.js";
|
|
5
|
+
import { Storyline as d } from "./Storyline.js";
|
|
6
|
+
import { WeHelpSection as j } from "./WeHelpSection.js";
|
|
7
|
+
import { GuidelinesSection as y } from "./GuidelinesSection.js";
|
|
8
|
+
import { ExpertsSection as C } from "./ExpertsSection.js";
|
|
9
|
+
import { TrustPilotSection as N } from "./TrustPilotSection.js";
|
|
10
|
+
import { PartnersSection as P } from "./PartnersSection.js";
|
|
11
|
+
import { CtaSection as T } from "./CtaSection.js";
|
|
12
|
+
import { ContactUsSection as U } from "./ContactUsSection.js";
|
|
13
|
+
import { Jumbotron2 as g } from "./Jumbotron2.js";
|
|
14
14
|
const v = ({
|
|
15
15
|
jumbotron: t,
|
|
16
16
|
intro: r,
|
|
@@ -25,18 +25,18 @@ const v = ({
|
|
|
25
25
|
cta: l,
|
|
26
26
|
contactUs: a
|
|
27
27
|
}) => /* @__PURE__ */ S("main", { className: "mx-auto flex w-full flex-1 flex-col text-neutral-800", children: [
|
|
28
|
-
/* @__PURE__ */ o(
|
|
29
|
-
/* @__PURE__ */ o(
|
|
30
|
-
/* @__PURE__ */ o(
|
|
31
|
-
/* @__PURE__ */ o(
|
|
32
|
-
/* @__PURE__ */ o(
|
|
33
|
-
/* @__PURE__ */ o(
|
|
34
|
-
/* @__PURE__ */ o(
|
|
35
|
-
/* @__PURE__ */ o(
|
|
36
|
-
/* @__PURE__ */ o(
|
|
37
|
-
/* @__PURE__ */ o(
|
|
38
|
-
/* @__PURE__ */ o(
|
|
39
|
-
/* @__PURE__ */ o(
|
|
28
|
+
/* @__PURE__ */ o(g, { ...t }),
|
|
29
|
+
/* @__PURE__ */ o(u, { ...r, className: "bg-primary-50" }),
|
|
30
|
+
/* @__PURE__ */ o(x, { ...m }),
|
|
31
|
+
/* @__PURE__ */ o(b, { ...i }),
|
|
32
|
+
/* @__PURE__ */ o(d, { ...e }),
|
|
33
|
+
/* @__PURE__ */ o(j, { ...n }),
|
|
34
|
+
/* @__PURE__ */ o(y, { ...p }),
|
|
35
|
+
/* @__PURE__ */ o(C, { ...f }),
|
|
36
|
+
/* @__PURE__ */ o(N, { ...s }),
|
|
37
|
+
/* @__PURE__ */ o(P, { ...c }),
|
|
38
|
+
/* @__PURE__ */ o(T, { ...l }),
|
|
39
|
+
/* @__PURE__ */ o(U, { ...a })
|
|
40
40
|
] });
|
|
41
41
|
export {
|
|
42
42
|
v as AboutUsTemplate
|
|
@@ -1,40 +1,14 @@
|
|
|
1
|
-
import { ComponentPropsWithRef } from 'react';
|
|
2
1
|
import { FC } from 'react';
|
|
3
2
|
import { ReactNode } from 'react';
|
|
4
3
|
|
|
5
|
-
export interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'children'> {
|
|
6
|
-
children: ReactNode;
|
|
7
|
-
size?: ButtonSize;
|
|
8
|
-
variant?: ResponsiveButtonVariant;
|
|
9
|
-
iconPosition?: IconPosition;
|
|
10
|
-
href?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export type ButtonSize = 'small' | 'default' | 'large';
|
|
14
|
-
|
|
15
|
-
export type ButtonVariant = 'primary-green' | 'primary-darkgreen' | 'primary-yellow' | 'primary-white' | 'secondary-green' | 'secondary-yellow' | 'secondary-red' | 'secondary-black' | 'tertiary-bold' | 'tertiary-thin' | 'tertiary-icon' | 'tertiary-link' | 'icon-black' | 'icon-grey' | 'icon-mobile';
|
|
16
|
-
|
|
17
|
-
export type IconPosition = 'left' | 'right' | 'top';
|
|
18
|
-
|
|
19
|
-
export interface IntroSectionProps {
|
|
20
|
-
image: ReactNode;
|
|
21
|
-
children: ReactNode;
|
|
22
|
-
cta: ButtonProps;
|
|
23
|
-
className?: string;
|
|
24
|
-
containerClassName?: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
4
|
export declare const NotFoundTemplate: FC<NotFoundTemplateProps>;
|
|
28
5
|
|
|
29
6
|
export declare interface NotFoundTemplateProps {
|
|
30
|
-
intro:
|
|
7
|
+
intro: {
|
|
8
|
+
image?: ReactNode;
|
|
9
|
+
title?: ReactNode;
|
|
10
|
+
message?: ReactNode;
|
|
11
|
+
cta?: ReactNode;
|
|
12
|
+
};
|
|
31
13
|
}
|
|
32
|
-
|
|
33
|
-
export type ResponsiveButtonVariant = ButtonVariant | {
|
|
34
|
-
initial?: ButtonVariant;
|
|
35
|
-
sm?: ButtonVariant;
|
|
36
|
-
md?: ButtonVariant;
|
|
37
|
-
lg?: ButtonVariant;
|
|
38
|
-
xl?: ButtonVariant;
|
|
39
|
-
};
|
|
40
14
|
|
|
@@ -1,6 +1,22 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
const
|
|
1
|
+
import { jsx as e, jsxs as a } from "react/jsx-runtime";
|
|
2
|
+
import { LinkWrapper as m } from "./LinkWrapper.js";
|
|
3
|
+
const i = ({ intro: l }) => /* @__PURE__ */ e("main", { className: "flex-1", children: /* @__PURE__ */ a("div", { className: "bg-neutral-white flex flex-col items-center py-16 text-center md:flex-row md:py-20 md:text-left lg:gap-20", children: [
|
|
4
|
+
l.image != null ? /* @__PURE__ */ e("div", { className: "mb-4 md:mr-6 md:mb-0 md:basis-42/100 lg:mr-10 lg:basis-39/100 xl:basis-36/100 [&_img]:h-auto [&_img]:w-full [&_img]:rounded-2xl xl:[&_img]:h-full xl:[&_img]:object-cover", children: l.image }) : null,
|
|
5
|
+
/* @__PURE__ */ a("div", { className: "mt-4 flex basis-full flex-col items-center md:mt-0 md:basis-56/100 md:items-start lg:basis-59/100 xl:basis-60/100", children: [
|
|
6
|
+
l.title != null ? /* @__PURE__ */ e("h1", { className: "font-lora text-extra-large font-normal text-neutral-800", children: l.title }) : null,
|
|
7
|
+
l.message != null ? /* @__PURE__ */ e("p", { className: "text-medium text-neutral-800", children: l.message }) : null,
|
|
8
|
+
l.cta != null ? /* @__PURE__ */ e(
|
|
9
|
+
m,
|
|
10
|
+
{
|
|
11
|
+
disabled: !1,
|
|
12
|
+
variant: "primary-darkgreen",
|
|
13
|
+
size: "large",
|
|
14
|
+
className: "mt-8 flex w-full justify-center md:justify-start",
|
|
15
|
+
children: l.cta
|
|
16
|
+
}
|
|
17
|
+
) : null
|
|
18
|
+
] })
|
|
19
|
+
] }) });
|
|
4
20
|
export {
|
|
5
|
-
|
|
21
|
+
i as NotFoundTemplate
|
|
6
22
|
};
|