@npm_leadtech/legal-contracts-ui 0.20.0 → 0.22.0

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.
Files changed (41) hide show
  1. package/dist/components/AllDocumentsTemplate.d.ts +2 -1
  2. package/dist/components/ArticlesSection.d.ts +2 -2
  3. package/dist/components/ArticlesSection.js +4 -4
  4. package/dist/components/CategoryProductTemplate.d.ts +4 -3
  5. package/dist/components/ContactUsTemplate.d.ts +1 -0
  6. package/dist/components/ContentItem.d.ts +7 -1
  7. package/dist/components/ContentItem.js +6 -12
  8. package/dist/components/DocOutlineIcon.d.ts +2 -0
  9. package/dist/components/DocOutlineIcon.js +13 -0
  10. package/dist/components/DoneCircleIcon.d.ts +5 -1
  11. package/dist/components/DoneCircleIcon.js +3 -3
  12. package/dist/components/FaqSection.d.ts +1 -2
  13. package/dist/components/FaqSection.js +7 -6
  14. package/dist/components/FaqsTemplate.d.ts +1 -2
  15. package/dist/components/FillFormsIcon.d.ts +4 -0
  16. package/dist/components/FillFormsIcon.js +14 -0
  17. package/dist/components/HistoryIcon.d.ts +4 -0
  18. package/dist/components/HistoryIcon.js +14 -0
  19. package/dist/components/HomeTemplate.d.ts +21 -21
  20. package/dist/components/Jumbotron.js +6 -6
  21. package/dist/components/Markdown.js +1 -1
  22. package/dist/components/MarkdownSection.d.ts +1 -0
  23. package/dist/components/MoreTemplatesSection.d.ts +2 -2
  24. package/dist/components/Paragraph.js +2 -2
  25. package/dist/components/Preform.js +7 -7
  26. package/dist/components/PreformOption.js +12 -6
  27. package/dist/components/PreviewSection.d.ts +1 -1
  28. package/dist/components/PreviewSection.js +9 -7
  29. package/dist/components/PrintIcon.d.ts +4 -0
  30. package/dist/components/PrintIcon.js +14 -0
  31. package/dist/components/ProcessSection.d.ts +3 -3
  32. package/dist/components/ProductInfo.d.ts +2 -2
  33. package/dist/components/ProductInfo.js +23 -7
  34. package/dist/components/ProductTemplate.d.ts +11 -4
  35. package/dist/components/ProductTemplate.js +40 -39
  36. package/dist/components/RatafiaSection.d.ts +3 -3
  37. package/dist/components/TimeIcon.d.ts +4 -0
  38. package/dist/components/TimeIcon.js +14 -0
  39. package/dist/components/index.d.ts +755 -0
  40. package/dist/globals.css +1 -1
  41. package/package.json +21 -1
@@ -53,7 +53,7 @@ export interface FaqItemProps {
53
53
 
54
54
  export interface FaqSectionProps {
55
55
  title?: string;
56
- description?: ReactNode;
56
+ description?: string;
57
57
  faqItems: FaqItemProps[];
58
58
  className?: string;
59
59
  }
@@ -71,6 +71,7 @@ export interface MarkdownProps {
71
71
  }
72
72
 
73
73
  export interface MarkdownSectionProps {
74
+ id: number;
74
75
  header: SectionHeadingProps;
75
76
  markdown: MarkdownProps;
76
77
  children?: ReactNode;
@@ -2,9 +2,9 @@ import { ComponentPropsWithRef } from 'react';
2
2
  import { FC } from 'react';
3
3
  import { ReactNode } from 'react';
4
4
 
5
- export declare const ArticlesSection: FC<ArticlesSectionProps>;
5
+ export declare const ArticlesSection: FC<BlogSectionProps>;
6
6
 
7
- export declare interface ArticlesSectionProps {
7
+ export declare interface BlogSectionProps {
8
8
  header: SectionHeadingProps;
9
9
  articles?: Array<{
10
10
  title: string;
@@ -1,11 +1,11 @@
1
1
  import { jsx as e, jsxs as r } from "react/jsx-runtime";
2
2
  import "react";
3
- import { SectionHeading as n } from "./SectionHeading.js";
3
+ import { SectionHeading as d } from "./SectionHeading.js";
4
4
  import { Button as s } from "./Button.js";
5
5
  const x = ({ header: i, articles: t = [], cta: a }) => t.length === 0 ? null : /* @__PURE__ */ e("section", { className: "px-6 pt-16 pb-20", children: /* @__PURE__ */ r("div", { className: "mx-auto max-w-6xl space-y-8", children: [
6
- /* @__PURE__ */ e(n, { ...i }),
7
- /* @__PURE__ */ e("div", { className: "grid gap-6 md:grid-cols-2", children: t.map((l) => /* @__PURE__ */ r("article", { className: "flex rounded-lg bg-white shadow", children: [
8
- /* @__PURE__ */ e("div", { className: "relative w-48 shrink-0 overflow-hidden rounded-l-lg", children: l.image }),
6
+ /* @__PURE__ */ e(d, { ...i }),
7
+ /* @__PURE__ */ e("div", { className: "grid gap-6 md:grid-cols-2", children: t.map((l) => /* @__PURE__ */ r("article", { className: "flex flex-col rounded-sm bg-white shadow md:flex-row", children: [
8
+ /* @__PURE__ */ e("div", { className: "relative h-48 shrink-0 overflow-hidden rounded-l-sm md:h-auto md:w-48", children: l.image }),
9
9
  /* @__PURE__ */ r("div", { className: "flex flex-1 flex-col gap-4 border-l border-neutral-200 p-6", children: [
10
10
  /* @__PURE__ */ e("h3", { className: "text-big font-semibold text-neutral-900", children: l.title }),
11
11
  /* @__PURE__ */ e("p", { className: "text-medium text-neutral-800", children: l.excerpt }),
@@ -2,7 +2,7 @@ import { ComponentPropsWithRef } from 'react';
2
2
  import { FC } from 'react';
3
3
  import { ReactNode } from 'react';
4
4
 
5
- export interface ArticlesSectionProps {
5
+ export interface BlogSectionProps {
6
6
  header: SectionHeadingProps;
7
7
  articles?: Array<{
8
8
  title: string;
@@ -41,7 +41,7 @@ export declare interface CategoryProductTemplateProps {
41
41
  documentSections: DocumentSectionProps[];
42
42
  ctaSection: MarkdownSectionProps;
43
43
  faqSection: FaqSectionProps;
44
- articles: ArticlesSectionProps;
44
+ articles: BlogSectionProps;
45
45
  }
46
46
 
47
47
  export interface DocumentCategoriesProps {
@@ -77,7 +77,7 @@ export interface FaqItemProps {
77
77
 
78
78
  export interface FaqSectionProps {
79
79
  title?: string;
80
- description?: ReactNode;
80
+ description?: string;
81
81
  faqItems: FaqItemProps[];
82
82
  className?: string;
83
83
  }
@@ -97,6 +97,7 @@ export interface MarkdownProps {
97
97
  }
98
98
 
99
99
  export interface MarkdownSectionProps {
100
+ id: number;
100
101
  header: SectionHeadingProps;
101
102
  markdown: MarkdownProps;
102
103
  children?: ReactNode;
@@ -35,6 +35,7 @@ export interface MarkdownProps {
35
35
  }
36
36
 
37
37
  export interface MarkdownSectionProps {
38
+ id: number;
38
39
  header: SectionHeadingProps;
39
40
  markdown: MarkdownProps;
40
41
  children?: ReactNode;
@@ -1,4 +1,10 @@
1
1
  import { FC } from 'react';
2
2
 
3
- export declare const ContentItem: FC;
3
+ export declare const ContentItem: FC<ContentItemProps>;
4
+
5
+ export declare interface ContentItemProps {
6
+ id: string;
7
+ title: string;
8
+ content: string;
9
+ }
4
10
 
@@ -1,15 +1,9 @@
1
- import { jsxs as t, jsx as e } from "react/jsx-runtime";
2
- const n = () => /* @__PURE__ */ t("div", { className: "flex flex-col gap-6", children: [
3
- /* @__PURE__ */ t("div", { className: "flex flex-col gap-4", children: [
4
- /* @__PURE__ */ e("h2", { className: "text-super-large font-bold text-neutral-800", children: "What Is a Lease" }),
5
- /* @__PURE__ */ t("div", { className: "text-medium space-y-4 text-neutral-800", children: [
6
- /* @__PURE__ */ e("p", { children: "A residential lease or rental lease are contracts between a tenant and landlord that allows the tenant to take temporary ownership of the property in exchange for regular rental payments. Around 100 million Americans live in rental properties and many of these people have entered into residential lease agreements." }),
7
- /* @__PURE__ */ e("p", { children: "For rolling month-by-month contracts a rental agreement will normally be used. It is a more flexible and short term contract that could potentially be modified for each continuous rental term." }),
8
- /* @__PURE__ */ e("p", { children: "Leases on the other hand are usually longer-term contracts covering many months or years. They have set terms that do not change as frequently or as flexibly as is the case for a rental contract." })
9
- ] })
10
- ] }),
11
- /* @__PURE__ */ e("div", { className: "bg-neutral-25 rounded px-6 py-16 text-center", children: /* @__PURE__ */ e("p", { className: "text-5xl font-bold tracking-[-0.9px] text-neutral-800", children: "CONTENIDO SEO" }) })
1
+ import { jsxs as l, jsx as e } from "react/jsx-runtime";
2
+ import { Markdown as s } from "./Markdown.js";
3
+ const o = ({ id: t, title: r, content: a }) => /* @__PURE__ */ l("div", { className: "flex flex-col gap-4", id: t, children: [
4
+ /* @__PURE__ */ e("h2", { className: "text-super-large font-bold text-neutral-800", children: r }),
5
+ /* @__PURE__ */ e("div", { className: "text-medium space-y-4 text-neutral-800", children: /* @__PURE__ */ e(s, { content: a, className: "text-medium text-neutral-800" }) })
12
6
  ] });
13
7
  export {
14
- n as ContentItem
8
+ o as ContentItem
15
9
  };
@@ -0,0 +1,2 @@
1
+ export declare const DocOutlineIcon: React.FC<React.SVGProps<SVGSVGElement>>;
2
+
@@ -0,0 +1,13 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ const o = (l) => /* @__PURE__ */ e("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, viewBox: "0 0 18 18", fill: "none", ...l, children: /* @__PURE__ */ e(
3
+ "path",
4
+ {
5
+ fillRule: "evenodd",
6
+ clipRule: "evenodd",
7
+ d: "M10.793 1.793a1 1 0 00-.707-.293H4.5C3.675 1.5 3 2.175 3 3v12c0 .825.667 1.5 1.492 1.5H13.5c.825 0 1.5-.675 1.5-1.5V6.414a1 1 0 00-.293-.707l-3.914-3.914zM6.75 9a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5zm0 3a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5zM4.5 15h9V6.75h-2.75a1 1 0 01-1-1V3H4.5v12z",
8
+ fill: "var(--secondary-600)"
9
+ }
10
+ ) });
11
+ export {
12
+ o as DocOutlineIcon
13
+ };
@@ -1,4 +1,8 @@
1
1
  import * as React_2 from 'react';
2
2
 
3
- export declare const DoneCircleIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
3
+ export declare const DoneCircleIcon: React_2.FC<DoneCircleIconProps>;
4
+
5
+ export declare interface DoneCircleIconProps extends React_2.SVGProps<SVGSVGElement> {
6
+ fill?: string;
7
+ }
4
8
 
@@ -1,6 +1,6 @@
1
1
  import { jsxs as l, jsx as e } from "react/jsx-runtime";
2
2
  import "react";
3
- const n = (i) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg", width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", ...i, children: [
3
+ const a = ({ fill: i = "var(--primary-900)", ...s }) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg", width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", ...s, children: [
4
4
  /* @__PURE__ */ e(
5
5
  "mask",
6
6
  {
@@ -23,7 +23,7 @@ const n = (i) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg",
23
23
  }
24
24
  ),
25
25
  /* @__PURE__ */ l("g", { mask: "url(#mask0_1024_3975)", children: [
26
- /* @__PURE__ */ e("path", { fill: "#032A38", fillRule: "evenodd", d: "M0 0h32v32H0z", clipRule: "evenodd" }),
26
+ /* @__PURE__ */ e("path", { fill: i, fillRule: "evenodd", d: "M0 0h32v32H0z", clipRule: "evenodd" }),
27
27
  /* @__PURE__ */ e(
28
28
  "mask",
29
29
  {
@@ -40,5 +40,5 @@ const n = (i) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg",
40
40
  ] })
41
41
  ] });
42
42
  export {
43
- n as DoneCircleIcon
43
+ a as DoneCircleIcon
44
44
  };
@@ -1,5 +1,4 @@
1
1
  import { FC } from 'react';
2
- import { ReactNode } from 'react';
3
2
 
4
3
  export interface FaqItemProps {
5
4
  question: string;
@@ -11,7 +10,7 @@ export declare const FaqSection: FC<FaqSectionProps>;
11
10
 
12
11
  export declare interface FaqSectionProps {
13
12
  title?: string;
14
- description?: ReactNode;
13
+ description?: string;
15
14
  faqItems: FaqItemProps[];
16
15
  className?: string;
17
16
  }
@@ -1,13 +1,14 @@
1
1
  import { jsxs as a, jsx as e } from "react/jsx-runtime";
2
2
  import "react";
3
- import { FaqItem as n } from "./FaqItem.js";
4
- const p = ({ title: t, description: s, faqItems: l, className: c = "" }) => l.length === 0 ? null : /* @__PURE__ */ a("div", { className: `flex w-full flex-col gap-6 ${c}`, children: [
3
+ import { Markdown as s } from "./Markdown.js";
4
+ import { FaqItem as c } from "./FaqItem.js";
5
+ const f = ({ title: n, description: l, faqItems: t, className: o = "" }) => t.length === 0 ? null : /* @__PURE__ */ a("div", { className: `flex w-full flex-col gap-6 ${o}`, children: [
5
6
  /* @__PURE__ */ a("div", { className: "space-y-4 text-neutral-800", children: [
6
- /* @__PURE__ */ e("h3", { className: "text-super-large font-bold", children: t }),
7
- s
7
+ /* @__PURE__ */ e("h3", { className: "text-super-large font-bold", children: n }),
8
+ l && /* @__PURE__ */ e(s, { content: l, className: "text-medium text-neutral-800" })
8
9
  ] }),
9
- /* @__PURE__ */ e("div", { className: "flex flex-col gap-4", children: l.map((r) => /* @__PURE__ */ e(n, { ...r }, r.question)) })
10
+ /* @__PURE__ */ e("div", { className: "flex flex-col gap-4", children: t.map((r) => /* @__PURE__ */ e(c, { ...r }, r.question)) })
10
11
  ] });
11
12
  export {
12
- p as FaqSection
13
+ f as FaqSection
13
14
  };
@@ -1,5 +1,4 @@
1
1
  import { FC } from 'react';
2
- import { ReactNode } from 'react';
3
2
 
4
3
  export interface AsideNavMenuProps {
5
4
  menuItems: Array<{
@@ -16,7 +15,7 @@ export interface FaqItemProps {
16
15
 
17
16
  export interface FaqSectionProps {
18
17
  title?: string;
19
- description?: ReactNode;
18
+ description?: string;
20
19
  faqItems: FaqItemProps[];
21
20
  className?: string;
22
21
  }
@@ -0,0 +1,4 @@
1
+ import * as React_2 from 'react';
2
+
3
+ export declare const FillFormsIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
4
+
@@ -0,0 +1,14 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import "react";
3
+ const o = (a) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", ...a, children: /* @__PURE__ */ l(
4
+ "path",
5
+ {
6
+ fillRule: "evenodd",
7
+ clipRule: "evenodd",
8
+ d: "M34.562 20.44a.281.281 0 00-.084-.202l-1.772-1.774a.288.288 0 00-.406 0l-1.301 1.302 2.177 2.178 1.302-1.302a.281.281 0 00.084-.202zm-2.8 2.918l-2.178-2.178-10.842 10.843 2.177 2.178 10.843-10.843zm-2.483 5.311l-5.977 5.978 5.7.001a.275.275 0 00.276-.274l.001-5.705zm-9.778 6.942l-2.173-2.174-.961.961a.048.048 0 00-.014.034v2.157h2.158l.99-.978zm-5.148-.966v-.213c0-.547.213-1.061.6-1.448l1.668-1.668 12.256-12.257.404-.403.003-15.375a.277.277 0 00-.275-.276L6.281 3H6.28a.272.272 0 00-.193.081.27.27 0 00-.082.193L6 34.367c0 .151.123.275.274.275l8.079.003zm21.539-12.589l-2.009 2.009-2.61 2.61c0 .012.007.022.007.034l-.002 7.665a2.277 2.277 0 01-2.276 2.274l-7.7-.002-1.344 1.344c-.38.381-.908.599-1.447.599h-3.158a1 1 0 01-1-1v-.944l-8.079-.003A2.277 2.277 0 014 34.367l.005-31.093c0-.606.238-1.178.669-1.608.43-.43 1-.666 1.605-.666h.003l22.727.005c.607 0 1.178.238 1.609.669.43.431.667 1.002.666 1.608l-.003 13.457a2.291 2.291 0 012.838.31l1.773 1.775a2.286 2.286 0 010 3.232zm-23.989 7.336H8.752a1 1 0 100 2h3.151a1 1 0 100-2zM8.752 26.6h7.151a1 1 0 100-2H8.752a1 1 0 100 2zm0-4.791H21a1 1 0 100-2H8.752a1 1 0 100 2zm0-4.791H26.53a1 1 0 100-2H8.752a1 1 0 100 2zm0-4.792H26.53a1 1 0 100-2H8.752a1 1 0 100 2zm-1-5.791a1 1 0 011-1H26.53a1 1 0 110 2H8.752a1 1 0 01-1-1z",
9
+ fill: "var(--neutral-900)"
10
+ }
11
+ ) });
12
+ export {
13
+ o as FillFormsIcon
14
+ };
@@ -0,0 +1,4 @@
1
+ import * as React_2 from 'react';
2
+
3
+ export declare const HistoryIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
4
+
@@ -0,0 +1,14 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import "react";
3
+ const i = (e) => /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, viewBox: "0 0 18 18", fill: "none", ...e, children: /* @__PURE__ */ l(
4
+ "path",
5
+ {
6
+ fillRule: "evenodd",
7
+ clipRule: "evenodd",
8
+ d: "M3.219 9.003a6.757 6.757 0 016.945-6.75c3.517.097 6.457 3.037 6.555 6.555a6.757 6.757 0 01-6.75 6.945c-1.568 0-3-.533-4.14-1.433-.353-.27-.375-.802-.06-1.117.27-.27.69-.293.99-.06a5.171 5.171 0 003.21 1.11 5.253 5.253 0 005.25-5.325c-.038-2.79-2.385-5.138-5.175-5.175a5.248 5.248 0 00-5.325 5.25H6.06c.338 0 .503.405.27.637l-2.092 2.1a.371.371 0 01-.533 0l-2.092-2.1a.371.371 0 01.262-.637H3.22zm6-2.438c0-.307.255-.562.562-.562.308 0 .563.255.563.555v2.55l2.16 1.282a.568.568 0 01.195.773.568.568 0 01-.773.195L9.586 9.97a.759.759 0 01-.367-.645v-2.76z",
9
+ fill: "var(--neutral-600)"
10
+ }
11
+ ) });
12
+ export {
13
+ i as HistoryIcon
14
+ };
@@ -2,7 +2,7 @@ import { ComponentPropsWithRef } from 'react';
2
2
  import { FC } from 'react';
3
3
  import { ReactNode } from 'react';
4
4
 
5
- export interface ArticlesSectionProps {
5
+ export interface BlogSectionProps {
6
6
  header: SectionHeadingProps;
7
7
  articles?: Array<{
8
8
  title: string;
@@ -54,17 +54,27 @@ export interface HeroSectionProps {
54
54
  backgroundImage?: string;
55
55
  }
56
56
 
57
+ export interface HomeStepsProps {
58
+ image: ReactNode;
59
+ header: SectionHeadingProps;
60
+ steps: Array<{
61
+ title: string;
62
+ description: string;
63
+ image: ReactNode;
64
+ }>;
65
+ }
66
+
57
67
  export declare const HomeTemplate: FC<HomeTemplateProps>;
58
68
 
59
69
  export declare interface HomeTemplateProps {
60
70
  hero?: HeroSectionProps;
61
- moreTemplates?: MoreTemplatesSectionProps;
62
- process?: ProcessSectionProps;
71
+ moreTemplates?: PopularDocumentsProps;
72
+ process?: HomeStepsProps;
63
73
  categories?: CategoriesSectionProps;
64
- ratafia?: RatafiaSectionProps;
74
+ ratafia?: LawGeniusSectionProps;
65
75
  trust?: TrustSectionProps;
66
76
  faqTeaser?: FaqTeaserSectionProps;
67
- articles?: ArticlesSectionProps;
77
+ articles?: BlogSectionProps;
68
78
  }
69
79
 
70
80
  export type IconPosition = 'left' | 'right' | 'top';
@@ -79,22 +89,7 @@ export interface ItemProps {
79
89
  className?: string;
80
90
  }
81
91
 
82
- export interface MoreTemplatesSectionProps {
83
- header: SectionHeadingProps;
84
- moreDocuments?: ItemProps[];
85
- }
86
-
87
- export interface ProcessSectionProps {
88
- image: ReactNode;
89
- header: SectionHeadingProps;
90
- steps: Array<{
91
- title: string;
92
- description: string;
93
- image: ReactNode;
94
- }>;
95
- }
96
-
97
- export interface RatafiaSectionProps {
92
+ export interface LawGeniusSectionProps {
98
93
  title: string;
99
94
  content: ReactNode;
100
95
  benefits: Array<{
@@ -105,6 +100,11 @@ export interface RatafiaSectionProps {
105
100
  image: ReactNode;
106
101
  }
107
102
 
103
+ export interface PopularDocumentsProps {
104
+ header: SectionHeadingProps;
105
+ moreDocuments?: ItemProps[];
106
+ }
107
+
108
108
  export interface SectionHeadingProps {
109
109
  title: string;
110
110
  description?: string;
@@ -1,12 +1,12 @@
1
1
  import { jsxs as e, jsx as t } from "react/jsx-runtime";
2
- import "react";
3
- const s = ({ title: r, description: a, bgImage: l }) => /* @__PURE__ */ e("section", { className: "bg-primary-900 relative isolate overflow-hidden px-4 pt-6 pb-8 text-center text-white md:pb-10", children: [
2
+ import { Markdown as l } from "./Markdown.js";
3
+ const x = ({ title: a, description: r, bgImage: o }) => /* @__PURE__ */ e("section", { className: "bg-primary-900 relative isolate overflow-hidden px-4 pt-6 pb-7 text-center text-white md:pb-7", children: [
4
4
  /* @__PURE__ */ e("div", { className: "mx-auto flex max-w-300 flex-col items-center gap-4 text-balance", children: [
5
- /* @__PURE__ */ t("h1", { className: "font-lora text-hero text-neutral-25", children: r }),
6
- /* @__PURE__ */ t("p", { className: "text-small text-primary-100 max-w-198", children: a })
5
+ /* @__PURE__ */ t("h1", { className: "font-lora text-hero text-neutral-25", children: a }),
6
+ /* @__PURE__ */ t(l, { content: r, className: "text-small text-neutral-25 m-auto max-w-248 text-center" })
7
7
  ] }),
8
- l
8
+ o
9
9
  ] });
10
10
  export {
11
- s as Jumbotron
11
+ x as Jumbotron
12
12
  };
@@ -7828,7 +7828,7 @@ function Cs(e) {
7828
7828
  }
7829
7829
  const Ss = (e, t) => /* @__PURE__ */ Fe(Qu, { ...e, className: t ? "inline" : "" }), Qs = ({ content: e, className: t = "" }) => {
7830
7830
  const u = t.includes("inline");
7831
- return /* @__PURE__ */ Fe("div", { className: `text-left ${t}`, children: /* @__PURE__ */ Fe(
7831
+ return /* @__PURE__ */ Fe("div", { className: t, children: /* @__PURE__ */ Fe(
7832
7832
  Du,
7833
7833
  {
7834
7834
  rehypePlugins: [Cs],
@@ -9,6 +9,7 @@ export interface MarkdownProps {
9
9
  export declare const MarkdownSection: FC<MarkdownSectionProps>;
10
10
 
11
11
  export declare interface MarkdownSectionProps {
12
+ id: number;
12
13
  header: SectionHeadingProps;
13
14
  markdown: MarkdownProps;
14
15
  children?: ReactNode;
@@ -11,9 +11,9 @@ export interface ItemProps {
11
11
  className?: string;
12
12
  }
13
13
 
14
- export declare const MoreTemplatesSection: FC<MoreTemplatesSectionProps>;
14
+ export declare const MoreTemplatesSection: FC<PopularDocumentsProps>;
15
15
 
16
- export declare interface MoreTemplatesSectionProps {
16
+ export declare interface PopularDocumentsProps {
17
17
  header: SectionHeadingProps;
18
18
  moreDocuments?: ItemProps[];
19
19
  }
@@ -1,5 +1,5 @@
1
1
  import { jsx as r } from "react/jsx-runtime";
2
- const e = ({ children: a }) => /* @__PURE__ */ r("p", { className: "mb-4 leading-7 text-gray-900", children: a });
2
+ const o = ({ children: a }) => /* @__PURE__ */ r("p", { className: "mb-4", children: a });
3
3
  export {
4
- e as Paragraph
4
+ o as Paragraph
5
5
  };
@@ -1,12 +1,12 @@
1
1
  import { jsx as e, jsxs as s } from "react/jsx-runtime";
2
2
  import { TrustedBadge as i } from "./TrustedBadge.js";
3
- import { PreformOption as d } from "./PreformOption.js";
4
- import { Button as o } from "./Button.js";
5
- const p = ({ trustedBadge: t, title: l, options: a, cta: m }) => /* @__PURE__ */ e("section", { className: "bg-neutral-25 px-4 pt-6 text-neutral-800 md:px-20", children: /* @__PURE__ */ e("div", { className: "mx-auto flex w-full max-w-300 flex-col gap-6", children: /* @__PURE__ */ s("div", { className: "relative rounded bg-white px-6 py-8 shadow-md md:px-14", children: [
6
- /* @__PURE__ */ e(i, { ...t }),
7
- /* @__PURE__ */ e("h2", { className: "text-big mb-8 text-center font-bold", children: l }),
8
- /* @__PURE__ */ e("div", { className: "flex flex-wrap justify-center gap-4", children: a.map((r) => /* @__PURE__ */ e(d, { ...r }, r.label)) }),
9
- /* @__PURE__ */ e("div", { className: "mt-8 flex justify-center", children: /* @__PURE__ */ e(o, { ...m }) })
3
+ import { PreformOption as o } from "./PreformOption.js";
4
+ import { Button as c } from "./Button.js";
5
+ const p = ({ trustedBadge: r, title: a, options: l, cta: m }) => /* @__PURE__ */ e("section", { className: "bg-neutral-25 px-4 pt-6 text-neutral-800 md:px-20", children: /* @__PURE__ */ e("div", { className: "mx-auto flex w-full max-w-300 flex-col gap-6", children: /* @__PURE__ */ s("div", { className: "relative rounded bg-white py-8 shadow-md", children: [
6
+ /* @__PURE__ */ e(i, { ...r }),
7
+ /* @__PURE__ */ e("h2", { className: "text-big mb-8 text-center font-bold", children: a }),
8
+ /* @__PURE__ */ e("div", { className: "m-auto flex max-w-265 flex-wrap justify-center gap-4", children: l.map((t) => /* @__PURE__ */ e(o, { ...t }, t.label)) }),
9
+ /* @__PURE__ */ e("div", { className: "mt-8 flex justify-center", children: /* @__PURE__ */ e(c, { ...m }) })
10
10
  ] }) }) });
11
11
  export {
12
12
  p as Preform
@@ -1,15 +1,21 @@
1
- import { jsxs as t, jsx as n } from "react/jsx-runtime";
1
+ import { jsxs as n, jsx as e } from "react/jsx-runtime";
2
2
  import "react";
3
- const m = ({ label: o, selected: r, icon: e }) => /* @__PURE__ */ t(
3
+ const a = ({ label: t, selected: r, icon: o }) => /* @__PURE__ */ n(
4
4
  "button",
5
5
  {
6
- className: `flex max-w-32 min-w-32 flex-1 flex-col items-center gap-2 rounded border p-4 transition-colors ${r ? "border-primary-900 border-2" : "border-neutral-200"}`,
6
+ className: `flex w-38.5 flex-col items-center gap-2 rounded border p-4 transition-colors ${r ? "border-primary-900 border-2" : "border-neutral-200"}`,
7
7
  children: [
8
- e,
9
- /* @__PURE__ */ n("span", { className: `text-small ${r ? "font-bold" : "font-normal"} text-neutral-800`, children: o })
8
+ /* @__PURE__ */ e("div", { className: "size-12", children: o }),
9
+ /* @__PURE__ */ e(
10
+ "span",
11
+ {
12
+ className: `text-small flex h-9 w-33 items-center justify-center text-neutral-800 ${r ? "font-bold" : "font-normal"}`,
13
+ children: t
14
+ }
15
+ )
10
16
  ]
11
17
  }
12
18
  );
13
19
  export {
14
- m as PreformOption
20
+ a as PreformOption
15
21
  };
@@ -19,7 +19,7 @@ export declare const PreviewSection: FC<PreviewSectionProps>;
19
19
 
20
20
  export declare interface PreviewSectionProps {
21
21
  title?: string;
22
- documentPreview?: ReactNode;
22
+ documentPreview?: string;
23
23
  cta: ButtonProps;
24
24
  }
25
25
 
@@ -1,11 +1,13 @@
1
- import { jsx as e, jsxs as c } from "react/jsx-runtime";
1
+ import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
2
  import "react";
3
- import { Button as l } from "./Button.js";
4
- const m = ({ title: t, documentPreview: r, cta: o }) => /* @__PURE__ */ e("section", { className: "bg-secondary-50 px-4 py-12 text-neutral-800 md:px-20", children: /* @__PURE__ */ c("div", { className: "mx-auto flex w-full max-w-240 flex-col items-center gap-8 text-center", children: [
5
- /* @__PURE__ */ e("h2", { className: "text-big font-bold", children: t }),
6
- r,
7
- /* @__PURE__ */ e(l, { ...o })
3
+ import { SectionHeading as o } from "./SectionHeading.js";
4
+ import { Markdown as a } from "./Markdown.js";
5
+ import { Button as m } from "./Button.js";
6
+ const p = ({ title: r, documentPreview: t, cta: i }) => /* @__PURE__ */ e("section", { className: "bg-secondary-50 px-4 py-12 text-neutral-800 md:px-20", children: /* @__PURE__ */ l("div", { className: "mx-auto flex w-full max-w-240 flex-col items-center gap-8 text-center", children: [
7
+ /* @__PURE__ */ e(o, { title: r ?? "" }),
8
+ /* @__PURE__ */ e("div", { className: "relative flex min-h-[372px] gap-6 overflow-hidden rounded border border-neutral-200 bg-white px-4 py-6", children: /* @__PURE__ */ e("div", { className: "text-medium flex-1 text-neutral-900", children: t && /* @__PURE__ */ e(a, { content: t, className: "text-medium max-h-144 text-left text-neutral-800" }) }) }),
9
+ /* @__PURE__ */ e(m, { ...i })
8
10
  ] }) });
9
11
  export {
10
- m as PreviewSection
12
+ p as PreviewSection
11
13
  };
@@ -0,0 +1,4 @@
1
+ import * as React_2 from 'react';
2
+
3
+ export declare const PrintIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
4
+
@@ -0,0 +1,14 @@
1
+ import { jsx as a } from "react/jsx-runtime";
2
+ import "react";
3
+ const h = (l) => /* @__PURE__ */ a("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", ...l, children: /* @__PURE__ */ a(
4
+ "path",
5
+ {
6
+ fillRule: "evenodd",
7
+ clipRule: "evenodd",
8
+ d: "M24.498 33.439a1 1 0 01-1 1H16.53a1 1 0 110-2h6.97a1 1 0 011 1zm0-3.313a1 1 0 01-1 1H16.53a1 1 0 010-2h6.97a1 1 0 011 1zm-1-4.314a1 1 0 110 2H16.53a1 1 0 110-2h6.97zm9.125-9.209c0 .991-.811 1.802-1.802 1.802-.99 0-1.801-.811-1.801-1.802s.811-1.801 1.801-1.801c.991 0 1.802.81 1.802 1.801zm4.403 8.107c0 .441-.359.8-.8.8h-4.405v-1.967c0-.902-.733-1.635-1.635-1.635H18.574l-5.763-.002-.009.002H9.84c-.902 0-1.635.733-1.635 1.635v1.967H3.802a.801.801 0 01-.802-.8v-9.007a4.41 4.41 0 014.404-4.405H32.623a4.409 4.409 0 014.403 4.405v9.007zm-7.205 5.453a2.554 2.554 0 01-1.605 2.365l.002-8.62h1.603v6.255zm-3.605 5.376c0 .428-.28.805-.602.805l-11.205-.003c-.32 0-.6-.377-.6-.806l.002-11.627h4.963l7.445.003-.003 11.628zm-16.01-5.376v-6.255h1.605l-.003 8.62a2.553 2.553 0 01-1.603-2.365zm0-25.338c0-.448.366-.825.801-.825H29.02c.443 0 .802.37.802.825v4.473H10.205V4.825zm22.417 4.473h-.802V4.825C31.821 3.267 30.564 2 29.019 2H11.007C9.462 2 8.205 3.267 8.205 4.825v4.473h-.801A6.412 6.412 0 001 15.703v9.007c0 1.543 1.257 2.8 2.802 2.8h4.403v2.653a4.559 4.559 0 003.603 4.449v.923c0 1.546 1.166 2.804 2.6 2.806l11.206.003c1.433 0 2.6-1.258 2.602-2.804v-.927a4.558 4.558 0 003.605-4.45V27.51h4.405c1.543 0 2.8-1.257 2.8-2.8v-9.007a6.41 6.41 0 00-6.403-6.405z",
9
+ fill: "var(--neutral-900)"
10
+ }
11
+ ) });
12
+ export {
13
+ h as PrintIcon
14
+ };
@@ -1,9 +1,7 @@
1
1
  import { FC } from 'react';
2
2
  import { ReactNode } from 'react';
3
3
 
4
- export declare const ProcessSection: FC<ProcessSectionProps>;
5
-
6
- export declare interface ProcessSectionProps {
4
+ export declare interface HomeStepsProps {
7
5
  image: ReactNode;
8
6
  header: SectionHeadingProps;
9
7
  steps: Array<{
@@ -13,6 +11,8 @@ export declare interface ProcessSectionProps {
13
11
  }>;
14
12
  }
15
13
 
14
+ export declare const ProcessSection: FC<HomeStepsProps>;
15
+
16
16
  export interface SectionHeadingProps {
17
17
  title: string;
18
18
  description?: string;
@@ -4,8 +4,8 @@ import { ReactNode } from 'react';
4
4
  export declare const ProductInfo: FC<ProductInfoProps>;
5
5
 
6
6
  export declare interface ProductInfoProps {
7
- lastUpdate: ReactNode;
7
+ lastUpdate: string;
8
8
  reviewer?: ReactNode;
9
- alsoKnownAs?: ReactNode;
9
+ alsoKnownAs?: string[];
10
10
  }
11
11
 
@@ -1,14 +1,30 @@
1
- import { jsx as e, jsxs as l, Fragment as s } from "react/jsx-runtime";
2
- const c = ({ lastUpdate: t, reviewer: a, alsoKnownAs: n }) => /* @__PURE__ */ e("section", { className: "bg-neutral-25 px-4 py-6 text-neutral-800 md:px-20", children: /* @__PURE__ */ e("div", { className: "mx-auto flex w-full max-w-300 flex-col gap-6", children: /* @__PURE__ */ l("div", { className: "text-small flex flex-col gap-2 text-neutral-600", children: [
1
+ import { jsx as e, jsxs as l, Fragment as i } from "react/jsx-runtime";
2
+ import { Note as a } from "./Note.js";
3
+ import { HistoryIcon as s } from "./HistoryIcon.js";
4
+ import { DoneCircleIcon as m } from "./DoneCircleIcon.js";
5
+ import { DocOutlineIcon as o } from "./DocOutlineIcon.js";
6
+ const u = ({ lastUpdate: c, reviewer: t, alsoKnownAs: r }) => /* @__PURE__ */ e("section", { className: "bg-neutral-25 px-4 py-6 text-neutral-800 md:px-20", children: /* @__PURE__ */ e("div", { className: "mx-auto flex w-full max-w-300 flex-col gap-6", children: /* @__PURE__ */ l("div", { className: "text-small flex flex-col gap-2 text-neutral-600", children: [
3
7
  /* @__PURE__ */ l("div", { className: "flex flex-wrap items-center gap-4", children: [
4
- t,
5
- !!a && /* @__PURE__ */ l(s, { children: [
8
+ /* @__PURE__ */ l(a, { children: [
9
+ /* @__PURE__ */ e(s, { className: "size-4.5", fill: "var(--neutral-600)" }),
10
+ /* @__PURE__ */ e("span", { children: c })
11
+ ] }),
12
+ !!t && /* @__PURE__ */ l(i, { children: [
6
13
  /* @__PURE__ */ e("span", { className: "hidden h-5 w-px bg-neutral-600 sm:block", "aria-hidden": !0 }),
7
- a
14
+ /* @__PURE__ */ l(a, { children: [
15
+ /* @__PURE__ */ e(m, { className: "size-4.5", fill: "var(--neutral-600)" }),
16
+ t
17
+ ] })
8
18
  ] })
9
19
  ] }),
10
- n
20
+ r && r.length > 0 && /* @__PURE__ */ l("div", { className: "flex flex-wrap items-center gap-2", children: [
21
+ /* @__PURE__ */ l(a, { children: [
22
+ /* @__PURE__ */ e(o, { className: "size-4.5", fill: "var(--neutral-600)" }),
23
+ " Also Known As:"
24
+ ] }),
25
+ r.map((n) => /* @__PURE__ */ e("span", { className: "text-small rounded border border-neutral-200 bg-white px-2 py-1", children: n }, n))
26
+ ] })
11
27
  ] }) }) });
12
28
  export {
13
- c as ProductInfo
29
+ u as ProductInfo
14
30
  };