@npm_leadtech/legal-contracts-ui 0.69.1 → 0.69.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.
|
@@ -10,9 +10,9 @@ const w = ({
|
|
|
10
10
|
breadcrumb: t,
|
|
11
11
|
categories: r,
|
|
12
12
|
documentSections: o,
|
|
13
|
-
contentItems:
|
|
14
|
-
faqSection:
|
|
15
|
-
}) => /* @__PURE__ */ a("main", { className: "mx-auto flex flex-1 flex-col gap-4 px-6
|
|
13
|
+
contentItems: p,
|
|
14
|
+
faqSection: s
|
|
15
|
+
}) => /* @__PURE__ */ a("main", { className: "mx-auto flex flex-1 flex-col gap-4 px-6 pt-8 pb-8 lg:px-8 lg:pb-16 xl:max-w-300 xl:px-0", children: [
|
|
16
16
|
/* @__PURE__ */ e(c, { ...m }),
|
|
17
17
|
/* @__PURE__ */ e(i, { ...t, className: "pt-2" }),
|
|
18
18
|
/* @__PURE__ */ a("div", { className: "mx-auto flex justify-center gap-4 text-neutral-800 lg:gap-26.5 xl:gap-31.5", children: [
|
|
@@ -20,8 +20,8 @@ const w = ({
|
|
|
20
20
|
/* @__PURE__ */ a("div", { className: "flex flex-col gap-10", children: [
|
|
21
21
|
o.map((l) => /* @__PURE__ */ e(n, { ...l }, l.id)),
|
|
22
22
|
/* @__PURE__ */ e("span", { className: "h-px w-full bg-neutral-200" }),
|
|
23
|
-
/* @__PURE__ */ e("div", { className: "w-full", children:
|
|
24
|
-
/* @__PURE__ */ e(d, { ...
|
|
23
|
+
/* @__PURE__ */ e("div", { className: "w-full", children: p.map((l) => /* @__PURE__ */ e(f, { ...l }, l.id)) }),
|
|
24
|
+
/* @__PURE__ */ e(d, { ...s })
|
|
25
25
|
] })
|
|
26
26
|
] })
|
|
27
27
|
] });
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { Markdown as
|
|
3
|
-
import { HistoryIcon as
|
|
4
|
-
const h = ({ title:
|
|
2
|
+
import { Markdown as o } from "./Markdown.js";
|
|
3
|
+
import { HistoryIcon as m } from "./HistoryIcon.js";
|
|
4
|
+
const h = ({ title: i, subtitle: t, description: s, lastUpdate: a, bgImage: r }) => /* @__PURE__ */ l("section", { className: "bg-primary-900 relative rounded p-6 shadow-lg md:px-12 md:py-10", children: [
|
|
5
5
|
/* @__PURE__ */ l("div", { className: "flex flex-col gap-4 lg:max-w-135", children: [
|
|
6
|
-
|
|
7
|
-
/* @__PURE__ */ e("h1", { className: "font-lora text-hero", children:
|
|
8
|
-
/* @__PURE__ */ e(
|
|
9
|
-
|
|
10
|
-
/* @__PURE__ */ e(
|
|
11
|
-
/* @__PURE__ */ e("span", { className: "text-small", children:
|
|
6
|
+
t && /* @__PURE__ */ e("p", { className: "text-extra-small text-primary-200 font-bold uppercase", children: t }),
|
|
7
|
+
/* @__PURE__ */ e("h1", { className: "font-lora text-hero text-white", children: i }),
|
|
8
|
+
/* @__PURE__ */ e(o, { className: "text-medium text-neutral-400 [&_p:last-child]:mb-0", content: s }),
|
|
9
|
+
a && /* @__PURE__ */ l("div", { className: "hidden items-center gap-1 md:flex", children: [
|
|
10
|
+
/* @__PURE__ */ e(m, { width: 18, height: 18, fill: "white" }),
|
|
11
|
+
/* @__PURE__ */ e("span", { className: "text-small", children: a })
|
|
12
12
|
] })
|
|
13
13
|
] }),
|
|
14
|
-
/* @__PURE__ */ e("div", { className: "absolute top-0 right-0 hidden lg:block", children:
|
|
14
|
+
!!r && /* @__PURE__ */ e("div", { className: "absolute top-0 right-0 hidden lg:block", children: r })
|
|
15
15
|
] });
|
|
16
16
|
export {
|
|
17
17
|
h as JumboCard
|