@axos-web-dev/shared-components 0.0.35 → 0.0.37
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.
- package/dist/Chevron/Chevron.interface.d.ts +4 -0
- package/dist/Chevron/index.js +28 -3
- package/dist/ExecutiveBio/ExecutiveBio.js +2 -2
- package/dist/ExecutiveBio/ExecutiveBioSet.js +2 -2
- package/dist/HeroBanner/index.js +1 -0
- package/dist/Hyperlink/index.js +3 -0
- package/dist/LandingPageHeader/LandingPageHeader.css.d.ts +52 -0
- package/dist/LandingPageHeader/LandingPageHeader.css.js +14 -0
- package/dist/LandingPageHeader/LandingPageHeader.d.ts +7 -0
- package/dist/LandingPageHeader/LandingPageHeader.js +87 -0
- package/dist/LandingPageHeader/index.d.ts +1 -0
- package/dist/LandingPageHeader/index.js +4 -0
- package/dist/Modal/Modal.js +3 -0
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
- package/dist/SetContainer/SetContainer.js +3 -0
- package/dist/SocialMediaBar/SocialMediaBar.css.d.ts +2 -0
- package/dist/SocialMediaBar/SocialMediaBar.css.js +7 -0
- package/dist/SocialMediaBar/iconsRepository.d.ts +11 -0
- package/dist/SocialMediaBar/iconsRepository.js +464 -0
- package/dist/SocialMediaBar/index.d.ts +1 -0
- package/dist/SocialMediaBar/index.js +22 -0
- package/dist/StepItems/StepItems.css.d.ts +132 -0
- package/dist/StepItems/StepItems.css.js +45 -0
- package/dist/StepItems/StepItems.d.ts +3 -0
- package/dist/StepItems/StepItems.interface.d.ts +21 -0
- package/dist/StepItems/StepItems.interface.js +1 -0
- package/dist/StepItems/StepItems.js +25 -0
- package/dist/StepItems/StepItemsSet.d.ts +3 -0
- package/dist/StepItems/StepItemsSet.js +113 -0
- package/dist/StepItems/index.d.ts +4 -0
- package/dist/StepItems/index.js +26 -0
- package/dist/assets/HeroBanner/HeroBanner.css +2 -2
- package/dist/assets/LandingPageHeader/LandingPageHeader.css +49 -0
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +83 -81
- package/dist/assets/SocialMediaBar/SocialMediaBar.css +35 -0
- package/dist/assets/StepItems/StepItems.css +275 -0
- package/dist/main.d.ts +3 -0
- package/dist/main.js +28 -0
- package/package.json +1 -1
package/dist/Chevron/index.js
CHANGED
|
@@ -38,11 +38,14 @@ import "../Input/InputPhone.js";
|
|
|
38
38
|
import "react-hook-form";
|
|
39
39
|
import "../SetContainer/SetContainer.css.js";
|
|
40
40
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
41
|
+
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
41
42
|
import { chevron_wrapper, chevron } from "./Chevron.css.js";
|
|
42
43
|
/* empty css */
|
|
43
44
|
/* empty css */
|
|
44
45
|
/* empty css */
|
|
45
46
|
/* empty css */
|
|
47
|
+
/* empty css */
|
|
48
|
+
import "../StepItems/StepItems.css.js";
|
|
46
49
|
import "../Table/Table.css.js";
|
|
47
50
|
/* empty css */
|
|
48
51
|
import "next/script.js";
|
|
@@ -53,11 +56,33 @@ const Chevron = ({
|
|
|
53
56
|
variant,
|
|
54
57
|
targetUrl,
|
|
55
58
|
id,
|
|
56
|
-
className
|
|
59
|
+
className,
|
|
60
|
+
goBack = false
|
|
57
61
|
}) => {
|
|
58
62
|
variant = getVariant(variant);
|
|
59
63
|
const { setTargetLinkUrl, setOpenModal } = useGlobalContext();
|
|
60
|
-
const
|
|
64
|
+
const backFunction = (e) => {
|
|
65
|
+
e.preventDefault();
|
|
66
|
+
if (window.history.length === 0) {
|
|
67
|
+
const userAgent = navigator.userAgent;
|
|
68
|
+
if (userAgent.match(/chrome|chromium|crios/i)) {
|
|
69
|
+
setTargetLinkUrl("https://www.google.com/_/chrome/newtab");
|
|
70
|
+
} else if (userAgent.match(/firefox|fxios/i)) {
|
|
71
|
+
setTargetLinkUrl("about:home");
|
|
72
|
+
} else if (userAgent.match(/safari/i)) {
|
|
73
|
+
setTargetLinkUrl("http://livepage.apple.com");
|
|
74
|
+
} else if (userAgent.match(/opr\//i)) {
|
|
75
|
+
setTargetLinkUrl("opera:speeddial");
|
|
76
|
+
} else if (userAgent.match(/edg/i)) {
|
|
77
|
+
setTargetLinkUrl("about:home");
|
|
78
|
+
} else {
|
|
79
|
+
console.log("No browser detection");
|
|
80
|
+
}
|
|
81
|
+
} else {
|
|
82
|
+
return history.back();
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
const onClick = !goBack ? (e) => {
|
|
61
86
|
if (targetUrl) {
|
|
62
87
|
const external_link = validateLink(targetUrl);
|
|
63
88
|
if (external_link) {
|
|
@@ -67,7 +92,7 @@ const Chevron = ({
|
|
|
67
92
|
setTargetLinkUrl(targetUrl);
|
|
68
93
|
}
|
|
69
94
|
}
|
|
70
|
-
};
|
|
95
|
+
} : backFunction;
|
|
71
96
|
return /* @__PURE__ */ jsxs("span", { className: `sc__btn ${chevron_wrapper}`, children: [
|
|
72
97
|
/* @__PURE__ */ jsx(
|
|
73
98
|
"a",
|
|
@@ -46,7 +46,7 @@ const ExecutiveBio = ({
|
|
|
46
46
|
"fill-rule": "evenodd",
|
|
47
47
|
"clip-rule": "evenodd",
|
|
48
48
|
d: "M5.25 4.5C5.25 2.84315 6.59315 1.5 8.25 1.5H15.75C17.4069 1.5 18.75 2.84315 18.75 4.5V19.5C18.75 21.1569 17.4069 22.5 15.75 22.5H8.25C6.59315 22.5 5.25 21.1569 5.25 19.5V4.5ZM6.75 4.5C6.75 3.67157 7.42157 3 8.25 3C8.25 3.82843 8.92157 4.5 9.75 4.5H14.25C15.0784 4.5 15.75 3.82843 15.75 3C16.5784 3 17.25 3.67157 17.25 4.5V19.5C17.25 20.3284 16.5784 21 15.75 21H8.25C7.42157 21 6.75 20.3284 6.75 19.5V4.5Z",
|
|
49
|
-
fill: "#
|
|
49
|
+
fill: "#1E3860",
|
|
50
50
|
className: svg_icon({ variant })
|
|
51
51
|
}
|
|
52
52
|
)
|
|
@@ -67,7 +67,7 @@ const ExecutiveBio = ({
|
|
|
67
67
|
"path",
|
|
68
68
|
{
|
|
69
69
|
d: "M21 4.5C21.8284 4.5 22.5 5.17157 22.5 6V18C22.5 18.8284 21.8284 19.5 21 19.5H3C2.17157 19.5 1.5 18.8284 1.5 18V6C1.5 5.17157 2.17157 4.5 3 4.5H21ZM14.3932 12.455L14.1963 12.6098C12.8873 13.5569 11.1127 13.5569 9.80369 12.6098L9.60517 12.455L4.059 18H19.9395L14.3932 12.455ZM21 6.8655L15.5437 11.483L21 16.9395V6.8655ZM3 6.867V16.938L8.45467 11.483L3 6.867ZM19.701 6H4.2975L10.5466 11.2878C11.3296 11.9503 12.4523 11.9944 13.2806 11.4203L13.4534 11.2878L19.701 6Z",
|
|
70
|
-
fill: "#
|
|
70
|
+
fill: "#1E3860",
|
|
71
71
|
className: svg_icon({ variant })
|
|
72
72
|
}
|
|
73
73
|
)
|
|
@@ -103,7 +103,7 @@ const ExecutiveBioSet = ({
|
|
|
103
103
|
"fill-rule": "evenodd",
|
|
104
104
|
"clip-rule": "evenodd",
|
|
105
105
|
d: "M5.25 4.5C5.25 2.84315 6.59315 1.5 8.25 1.5H15.75C17.4069 1.5 18.75 2.84315 18.75 4.5V19.5C18.75 21.1569 17.4069 22.5 15.75 22.5H8.25C6.59315 22.5 5.25 21.1569 5.25 19.5V4.5ZM6.75 4.5C6.75 3.67157 7.42157 3 8.25 3C8.25 3.82843 8.92157 4.5 9.75 4.5H14.25C15.0784 4.5 15.75 3.82843 15.75 3C16.5784 3 17.25 3.67157 17.25 4.5V19.5C17.25 20.3284 16.5784 21 15.75 21H8.25C7.42157 21 6.75 20.3284 6.75 19.5V4.5Z",
|
|
106
|
-
fill: "#
|
|
106
|
+
fill: "#1E3860"
|
|
107
107
|
}
|
|
108
108
|
)
|
|
109
109
|
}
|
|
@@ -124,7 +124,7 @@ const ExecutiveBioSet = ({
|
|
|
124
124
|
"path",
|
|
125
125
|
{
|
|
126
126
|
d: "M21 4.5C21.8284 4.5 22.5 5.17157 22.5 6V18C22.5 18.8284 21.8284 19.5 21 19.5H3C2.17157 19.5 1.5 18.8284 1.5 18V6C1.5 5.17157 2.17157 4.5 3 4.5H21ZM14.3932 12.455L14.1963 12.6098C12.8873 13.5569 11.1127 13.5569 9.80369 12.6098L9.60517 12.455L4.059 18H19.9395L14.3932 12.455ZM21 6.8655L15.5437 11.483L21 16.9395V6.8655ZM3 6.867V16.938L8.45467 11.483L3 6.867ZM19.701 6H4.2975L10.5466 11.2878C11.3296 11.9503 12.4523 11.9944 13.2806 11.4203L13.4534 11.2878L19.701 6Z",
|
|
127
|
-
fill: "#
|
|
127
|
+
fill: "#1E3860"
|
|
128
128
|
}
|
|
129
129
|
)
|
|
130
130
|
}
|
package/dist/HeroBanner/index.js
CHANGED
package/dist/Hyperlink/index.js
CHANGED
|
@@ -38,10 +38,13 @@ import "../Input/InputPhone.js";
|
|
|
38
38
|
import "react-hook-form";
|
|
39
39
|
import "../SetContainer/SetContainer.css.js";
|
|
40
40
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
41
|
+
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
41
42
|
/* empty css */
|
|
42
43
|
/* empty css */
|
|
43
44
|
/* empty css */
|
|
44
45
|
/* empty css */
|
|
46
|
+
/* empty css */
|
|
47
|
+
import "../StepItems/StepItems.css.js";
|
|
45
48
|
import "../Table/Table.css.js";
|
|
46
49
|
/* empty css */
|
|
47
50
|
import "next/script.js";
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export declare const lp_theme: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
2
|
+
variant: {
|
|
3
|
+
primary: {
|
|
4
|
+
selectors: {
|
|
5
|
+
[x: string]: {
|
|
6
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
secondary: {
|
|
11
|
+
selectors: {
|
|
12
|
+
[x: string]: {
|
|
13
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
tertiary: {
|
|
18
|
+
selectors: {
|
|
19
|
+
[x: string]: {
|
|
20
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
}>;
|
|
26
|
+
export declare const lp_container: string;
|
|
27
|
+
export declare const lp_hover: string;
|
|
28
|
+
export declare const svg_fill: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
29
|
+
variant: {
|
|
30
|
+
primary: {
|
|
31
|
+
selectors: {
|
|
32
|
+
[x: string]: {
|
|
33
|
+
fill: "#1e3860";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
secondary: {
|
|
38
|
+
selectors: {
|
|
39
|
+
[x: string]: {
|
|
40
|
+
fill: "#1e3860";
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
tertiary: {
|
|
45
|
+
selectors: {
|
|
46
|
+
[x: string]: {
|
|
47
|
+
fill: "#fff";
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
5
|
+
var lp_theme = createRuntimeFn({ defaultClassName: "_1o1hxre0", variantClassNames: { variant: { primary: "_1o1hxre1", secondary: "_1o1hxre2", tertiary: "_1o1hxre3" } }, defaultVariants: {}, compoundVariants: [] });
|
|
6
|
+
var lp_container = "_1o1hxre4";
|
|
7
|
+
var lp_hover = "_1o1hxre5";
|
|
8
|
+
var svg_fill = createRuntimeFn({ defaultClassName: "_1o1hxre6", variantClassNames: { variant: { primary: "_1o1hxre7", secondary: "_1o1hxre8", tertiary: "_1o1hxre9" } }, defaultVariants: {}, compoundVariants: [] });
|
|
9
|
+
export {
|
|
10
|
+
lp_container,
|
|
11
|
+
lp_hover,
|
|
12
|
+
lp_theme,
|
|
13
|
+
svg_fill
|
|
14
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuaternaryTypes } from '../utils/variant.types';
|
|
2
|
+
|
|
3
|
+
export interface LandingPageHeaderProps {
|
|
4
|
+
id: string;
|
|
5
|
+
variant: QuaternaryTypes;
|
|
6
|
+
}
|
|
7
|
+
export declare const LandingPageHeader: ({ id, variant: fullVariant, }: LandingPageHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { getVariant } from "../utils/getVariant.js";
|
|
3
|
+
import { lp_theme, lp_container, lp_hover, svg_fill } from "./LandingPageHeader.css.js";
|
|
4
|
+
const LandingPageHeader = ({
|
|
5
|
+
id,
|
|
6
|
+
variant: fullVariant = "primary"
|
|
7
|
+
}) => {
|
|
8
|
+
const variant = getVariant(fullVariant);
|
|
9
|
+
return /* @__PURE__ */ jsx("header", { className: `${lp_theme({ variant })}`, id: `id_${id}`, children: /* @__PURE__ */ jsx("div", { className: `${lp_container} flex center middle`, children: /* @__PURE__ */ jsx(
|
|
10
|
+
"a",
|
|
11
|
+
{
|
|
12
|
+
href: "/",
|
|
13
|
+
className: lp_hover,
|
|
14
|
+
"aria-label": "axos logo, return to homepage",
|
|
15
|
+
children: /* @__PURE__ */ jsxs(
|
|
16
|
+
"svg",
|
|
17
|
+
{
|
|
18
|
+
width: "120",
|
|
19
|
+
height: "27",
|
|
20
|
+
viewBox: "0 0 120 27",
|
|
21
|
+
fill: "none",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
children: [
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M35.9428 0.576394C35.4899 0.123506 34.79 0.123506 34.3371 0.576394L33.6784 1.23514C33.2255 1.68803 33.2255 2.38794 33.6784 2.84083L44.0948 13.2984L33.6784 23.756C33.2255 24.2089 33.2255 24.9088 33.6784 25.3617L34.3371 26.0204C34.79 26.4733 35.4899 26.4733 35.9428 26.0204L48.6237 13.2984L35.9428 0.576394Z",
|
|
28
|
+
fill: "#FAA74A"
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
"path",
|
|
33
|
+
{
|
|
34
|
+
d: "M115.157 2.38795C115.157 1.02929 116.186 0 117.545 0C118.903 0 119.933 1.02929 119.933 2.38795C119.933 3.74661 118.903 4.7759 117.545 4.7759C116.186 4.7759 115.157 3.74661 115.157 2.38795ZM119.645 2.38795C119.645 1.1528 118.78 0.288201 117.545 0.288201C116.31 0.288201 115.445 1.19398 115.445 2.38795C115.445 3.6231 116.31 4.4877 117.545 4.4877C118.739 4.52887 119.645 3.58193 119.645 2.38795ZM117.133 3.58193H116.804V1.11163C116.968 1.07046 117.174 1.07046 117.38 1.07046C117.998 1.07046 118.368 1.35866 118.368 1.89389C118.368 2.30561 118.08 2.55264 117.792 2.63498L118.615 3.6231H118.245L117.504 2.71732H117.174L117.133 3.58193ZM117.133 2.42912H117.421C117.751 2.42912 118.039 2.26444 118.039 1.89389C118.039 1.56452 117.792 1.39983 117.38 1.39983C117.298 1.39983 117.174 1.39983 117.092 1.39983L117.133 2.42912Z",
|
|
35
|
+
fill: "#1e3860",
|
|
36
|
+
className: `${svg_fill({ variant })}`
|
|
37
|
+
}
|
|
38
|
+
),
|
|
39
|
+
/* @__PURE__ */ jsx(
|
|
40
|
+
"path",
|
|
41
|
+
{
|
|
42
|
+
d: "M105.687 11.8162C105.687 11.8162 104.493 11.528 103.835 11.281C101.735 10.5399 99.7999 9.42828 99.7999 7.41088C99.7999 5.0641 101.817 3.4584 104.864 3.4584C106.881 3.4584 108.446 4.03481 109.558 5.14644L109.928 5.51698C110.381 5.96987 111.081 5.96987 111.534 5.51698L112.193 4.85824C112.645 4.40535 112.645 3.70543 112.193 3.25255C112.028 3.04669 111.822 2.882 111.822 2.882C110.052 1.19397 107.623 0.288193 104.864 0.288193C102.353 0.288193 100.335 0.946938 98.6471 2.34677C97.0414 3.70543 96.2592 5.39347 96.2592 7.45205C96.2592 12.475 100.953 13.7101 105.07 14.8218L105.193 14.8629C108.816 15.7275 110.628 17.1685 110.628 19.1448C110.628 21.6562 108.528 23.1384 105.07 23.1384C102.888 23.1384 100.953 22.3973 99.6352 21.0798L99.2647 20.7093C98.8118 20.2564 98.1119 20.2564 97.659 20.7093L96.8767 21.4916C96.4239 21.9444 96.4239 22.6444 96.8767 23.0972L97.2473 23.4678C99.1412 25.3205 101.859 26.3498 105.07 26.3498C107.746 26.3498 109.928 25.6911 111.657 24.3324C113.345 23.0561 114.169 21.2857 114.169 19.1036C114.251 14.4512 110.216 12.8455 105.687 11.8162Z",
|
|
43
|
+
fill: "#1e3860",
|
|
44
|
+
className: `${svg_fill({ variant })}`
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ jsx(
|
|
48
|
+
"path",
|
|
49
|
+
{
|
|
50
|
+
d: "M76.4145 0.247032C69.2094 0.247032 63.4042 6.0934 63.4042 13.2984C63.4042 20.5035 69.2094 26.3498 76.4145 26.3498C83.6195 26.3498 89.4247 20.5035 89.4247 13.2984C89.4247 6.0934 83.5783 0.247032 76.4145 0.247032ZM76.4145 3.45842C81.8491 3.45842 86.2545 7.86378 86.2545 13.2984C86.2545 18.7331 81.8491 23.1384 76.4145 23.1384C70.9798 23.1384 66.5744 18.7331 66.5744 13.2984C66.5744 7.86378 70.9798 3.45842 76.4145 3.45842Z",
|
|
51
|
+
fill: "#1e3860",
|
|
52
|
+
className: `${svg_fill({ variant })}`
|
|
53
|
+
}
|
|
54
|
+
),
|
|
55
|
+
/* @__PURE__ */ jsx(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M59.04 25.3617L58.3812 26.0204C57.9284 26.4733 57.2284 26.4733 56.7755 26.0204L47.9237 17.1685L50.1881 14.9041L59.04 23.756C59.4929 24.1677 59.4929 24.9088 59.04 25.3617Z",
|
|
59
|
+
fill: "#1e3860",
|
|
60
|
+
className: `${svg_fill({ variant })}`
|
|
61
|
+
}
|
|
62
|
+
),
|
|
63
|
+
/* @__PURE__ */ jsx(
|
|
64
|
+
"path",
|
|
65
|
+
{
|
|
66
|
+
d: "M59.04 1.23514L58.3812 0.576394C57.9284 0.123506 57.2284 0.123506 56.7755 0.576394L47.9237 9.42828L50.1881 11.6927L59.04 2.84083C59.4929 2.42911 59.4929 1.68803 59.04 1.23514Z",
|
|
67
|
+
fill: "#1e3860",
|
|
68
|
+
className: `${svg_fill({ variant })}`
|
|
69
|
+
}
|
|
70
|
+
),
|
|
71
|
+
/* @__PURE__ */ jsx(
|
|
72
|
+
"path",
|
|
73
|
+
{
|
|
74
|
+
d: "M22.8502 13.3396C22.8091 18.7331 18.4037 23.1384 13.0102 23.1384C7.57557 23.1384 3.17021 18.7331 3.17021 13.2984C3.17021 7.86378 7.61674 3.45842 13.0102 3.45842C18.4037 3.45842 22.8091 7.8226 22.8502 13.2573V13.3396ZM24.9088 0.247032H23.9619C23.3443 0.247032 22.8091 0.741091 22.8091 1.39984V4.73474C20.4623 1.97624 16.9627 0.247032 13.0102 0.247032C5.80519 0.247032 0 6.0934 0 13.2984C0 20.5035 5.84636 26.3498 13.0102 26.3498C16.9215 26.3498 20.4623 24.6206 22.8502 21.8621V25.197C22.8502 25.8146 23.3443 26.3498 24.003 26.3498H24.95C25.5676 26.3498 26.1028 25.8558 26.1028 25.197V1.39984C26.0616 0.782263 25.5676 0.247032 24.9088 0.247032Z",
|
|
75
|
+
fill: "#1e3860",
|
|
76
|
+
className: `${svg_fill({ variant })}`
|
|
77
|
+
}
|
|
78
|
+
)
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
)
|
|
82
|
+
}
|
|
83
|
+
) }) });
|
|
84
|
+
};
|
|
85
|
+
export {
|
|
86
|
+
LandingPageHeader
|
|
87
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './LandingPageHeader';
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -35,10 +35,13 @@ import "../Input/InputPhone.js";
|
|
|
35
35
|
import "react-hook-form";
|
|
36
36
|
import "../SetContainer/SetContainer.css.js";
|
|
37
37
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
38
|
+
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
38
39
|
import "./contextApi/store.js";
|
|
39
40
|
/* empty css */
|
|
40
41
|
/* empty css */
|
|
41
42
|
/* empty css */
|
|
43
|
+
/* empty css */
|
|
44
|
+
import "../StepItems/StepItems.css.js";
|
|
42
45
|
import "../Table/Table.css.js";
|
|
43
46
|
/* empty css */
|
|
44
47
|
import "next/script.js";
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav = "
|
|
8
|
-
const main_nav_link = "
|
|
9
|
-
const sub_nav_link = "
|
|
10
|
-
const signin_wrap = "
|
|
11
|
-
const signin_btn = "
|
|
12
|
-
const sub_nav = "
|
|
13
|
-
const header_sub_row = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const opacity = "
|
|
16
|
-
const fadeInDown = "
|
|
17
|
-
const footer = "
|
|
18
|
-
const open = "
|
|
19
|
-
const mt_8 = "
|
|
20
|
-
const mt_16 = "
|
|
21
|
-
const ml_8 = "
|
|
22
|
-
const reversed_row = "
|
|
23
|
-
const nav_anchor = "
|
|
24
|
-
const site_lists = "
|
|
25
|
-
const hamburger = "
|
|
26
|
-
const mobile_logo = "
|
|
27
|
-
const mobile_nav = "
|
|
28
|
-
const mobile_opened = "
|
|
29
|
-
const mobile_nav_item = "
|
|
30
|
-
const icon_wrap = "
|
|
31
|
-
const mobile_footer = "
|
|
32
|
-
const mobile_footer_content = "
|
|
33
|
-
const mobile_footer_media = "
|
|
34
|
-
const footer_cta = "
|
|
35
|
-
const inner_wrapper = "
|
|
36
|
-
const btn = "
|
|
37
|
-
const sub_menu = "
|
|
38
|
-
const main = "
|
|
39
|
-
const desktop_only = "
|
|
40
|
-
const mobile_only = "
|
|
1
|
+
const header = "_header_1t85r_1";
|
|
2
|
+
const wrapper = "_wrapper_1t85r_5";
|
|
3
|
+
const header_main_row = "_header_main_row_1t85r_11";
|
|
4
|
+
const mobile_header = "_mobile_header_1t85r_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_1t85r_18";
|
|
6
|
+
const primary_links = "_primary_links_1t85r_22";
|
|
7
|
+
const main_nav = "_main_nav_1t85r_26";
|
|
8
|
+
const main_nav_link = "_main_nav_link_1t85r_33";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_1t85r_55";
|
|
10
|
+
const signin_wrap = "_signin_wrap_1t85r_57";
|
|
11
|
+
const signin_btn = "_signin_btn_1t85r_58";
|
|
12
|
+
const sub_nav = "_sub_nav_1t85r_55";
|
|
13
|
+
const header_sub_row = "_header_sub_row_1t85r_99";
|
|
14
|
+
const shadow = "_shadow_1t85r_115";
|
|
15
|
+
const opacity = "_opacity_1t85r_131";
|
|
16
|
+
const fadeInDown = "_fadeInDown_1t85r_1";
|
|
17
|
+
const footer = "_footer_1t85r_137";
|
|
18
|
+
const open = "_open_1t85r_153";
|
|
19
|
+
const mt_8 = "_mt_8_1t85r_161";
|
|
20
|
+
const mt_16 = "_mt_16_1t85r_165";
|
|
21
|
+
const ml_8 = "_ml_8_1t85r_169";
|
|
22
|
+
const reversed_row = "_reversed_row_1t85r_173";
|
|
23
|
+
const nav_anchor = "_nav_anchor_1t85r_177";
|
|
24
|
+
const site_lists = "_site_lists_1t85r_188";
|
|
25
|
+
const hamburger = "_hamburger_1t85r_192";
|
|
26
|
+
const mobile_logo = "_mobile_logo_1t85r_206";
|
|
27
|
+
const mobile_nav = "_mobile_nav_1t85r_231";
|
|
28
|
+
const mobile_opened = "_mobile_opened_1t85r_243";
|
|
29
|
+
const mobile_nav_item = "_mobile_nav_item_1t85r_247";
|
|
30
|
+
const icon_wrap = "_icon_wrap_1t85r_262";
|
|
31
|
+
const mobile_footer = "_mobile_footer_1t85r_267";
|
|
32
|
+
const mobile_footer_content = "_mobile_footer_content_1t85r_273";
|
|
33
|
+
const mobile_footer_media = "_mobile_footer_media_1t85r_287";
|
|
34
|
+
const footer_cta = "_footer_cta_1t85r_294";
|
|
35
|
+
const inner_wrapper = "_inner_wrapper_1t85r_326";
|
|
36
|
+
const btn = "_btn_1t85r_330";
|
|
37
|
+
const sub_menu = "_sub_menu_1t85r_335";
|
|
38
|
+
const main = "_main_1t85r_26";
|
|
39
|
+
const desktop_only = "_desktop_only_1t85r_364";
|
|
40
|
+
const mobile_only = "_mobile_only_1t85r_411";
|
|
41
41
|
const styles = {
|
|
42
42
|
header,
|
|
43
43
|
wrapper,
|
|
@@ -35,11 +35,14 @@ import "../Input/InputPhone.js";
|
|
|
35
35
|
import "react-hook-form";
|
|
36
36
|
import { set_container, inline_container } from "./SetContainer.css.js";
|
|
37
37
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
38
|
+
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
38
39
|
import "../Chevron/Chevron.css.js";
|
|
39
40
|
/* empty css */
|
|
40
41
|
/* empty css */
|
|
41
42
|
/* empty css */
|
|
42
43
|
/* empty css */
|
|
44
|
+
/* empty css */
|
|
45
|
+
import "../StepItems/StepItems.css.js";
|
|
43
46
|
import "../Table/Table.css.js";
|
|
44
47
|
/* empty css */
|
|
45
48
|
import "next/script.js";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const BusinessWire: () => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const Facebook: () => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const Glassdoor: () => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const Indeed: () => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const Instagram: () => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const LinkedIn: () => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const Libsyn: () => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const Pinterest: () => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const Spotify: () => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const Youtube: () => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const Xtwitter: () => import("react/jsx-runtime").JSX.Element;
|