@npm_leadtech/legal-contracts-ui 0.43.2 → 0.43.3
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.
|
@@ -71,7 +71,7 @@ export declare interface HomeTemplateProps {
|
|
|
71
71
|
hero?: HeroSectionProps;
|
|
72
72
|
moreTemplates?: PopularDocumentsProps;
|
|
73
73
|
process?: HomeStepsProps;
|
|
74
|
-
categories
|
|
74
|
+
categories?: CategoriesSectionProps;
|
|
75
75
|
ratafia?: LawGeniusSectionProps;
|
|
76
76
|
trust?: TrustSectionProps;
|
|
77
77
|
faqTeaser: FaqTeaserSectionProps;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import { jsxs as f, jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { HeroSection as
|
|
4
|
-
import { MoreTemplatesSection as
|
|
3
|
+
import { HeroSection as S } from "./HeroSection.js";
|
|
4
|
+
import { MoreTemplatesSection as s } from "./MoreTemplatesSection.js";
|
|
5
5
|
import { ProcessSection as a } from "./ProcessSection.js";
|
|
6
6
|
import { CategoriesSection as l } from "./CategoriesSection.js";
|
|
7
7
|
import { RatafiaSection as x } from "./RatafiaSection.js";
|
|
8
8
|
import { TrustSection as T } from "./TrustSection.js";
|
|
9
9
|
import { FaqTeaserSection as j } from "./FaqTeaserSection.js";
|
|
10
10
|
import { ArticlesSection as H } from "./ArticlesSection.js";
|
|
11
|
-
const
|
|
11
|
+
const b = ({
|
|
12
12
|
hero: r,
|
|
13
13
|
moreTemplates: m,
|
|
14
14
|
process: t,
|
|
15
|
-
categories:
|
|
16
|
-
ratafia:
|
|
17
|
-
trust:
|
|
18
|
-
faqTeaser:
|
|
19
|
-
articles:
|
|
15
|
+
categories: i,
|
|
16
|
+
ratafia: e,
|
|
17
|
+
trust: n,
|
|
18
|
+
faqTeaser: c,
|
|
19
|
+
articles: p
|
|
20
20
|
}) => /* @__PURE__ */ f("main", { className: "flex-1", children: [
|
|
21
|
-
r && /* @__PURE__ */ o(
|
|
22
|
-
m && /* @__PURE__ */ o(
|
|
21
|
+
r && /* @__PURE__ */ o(S, { ...r }),
|
|
22
|
+
m && /* @__PURE__ */ o(s, { ...m }),
|
|
23
23
|
t && /* @__PURE__ */ o(a, { ...t }),
|
|
24
|
-
/* @__PURE__ */ o(l, { ...
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
/* @__PURE__ */ o(j, { ...
|
|
28
|
-
|
|
24
|
+
i && /* @__PURE__ */ o(l, { ...i }),
|
|
25
|
+
e && /* @__PURE__ */ o(x, { ...e }),
|
|
26
|
+
n && /* @__PURE__ */ o(T, { ...n }),
|
|
27
|
+
/* @__PURE__ */ o(j, { ...c }),
|
|
28
|
+
p && /* @__PURE__ */ o(H, { ...p })
|
|
29
29
|
] });
|
|
30
30
|
export {
|
|
31
|
-
|
|
31
|
+
b as HomeTemplate
|
|
32
32
|
};
|