@axos-web-dev/shared-components 0.0.68 → 0.0.70

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 (58) hide show
  1. package/dist/ArticlesSet/ArticlesSet.js +3 -3
  2. package/dist/AwardsBanner/AwardsBanner.js +3 -3
  3. package/dist/Calculators/Calculator.js +1 -0
  4. package/dist/CallToActionBar/CallToActionBar.css.d.ts +1 -4
  5. package/dist/CallToActionBar/CallToActionBar.css.js +14 -20
  6. package/dist/CallToActionBar/index.js +2 -2
  7. package/dist/Carousel/index.js +1 -0
  8. package/dist/Chevron/index.js +1 -0
  9. package/dist/Comparison/Comparison.js +24 -2
  10. package/dist/Comparison/ComparisonSet.js +1 -0
  11. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -0
  12. package/dist/Forms/ApplicationStart.js +5 -1
  13. package/dist/Forms/ContactCompany.js +5 -1
  14. package/dist/Forms/ContactUsAAS.js +21 -24
  15. package/dist/Forms/ContactUsBusiness.js +6 -1
  16. package/dist/Forms/DealerServices.js +5 -1
  17. package/dist/Forms/EmailOnly.js +6 -1
  18. package/dist/Forms/FormEnums.d.ts +3 -2
  19. package/dist/Forms/SalesforceFieldsForm.d.ts +0 -12
  20. package/dist/Forms/SalesforceFieldsForm.js +1 -4
  21. package/dist/Forms/ScheduleCall.js +5 -1
  22. package/dist/Forms/ScheduleCallPremier.js +5 -1
  23. package/dist/Forms/SuccesForm.js +1 -0
  24. package/dist/Hyperlink/index.js +1 -0
  25. package/dist/ImageLink/ImageLink.js +1 -0
  26. package/dist/ImageLink/ImageLinkSet.js +1 -0
  27. package/dist/ImageLink/index.js +1 -0
  28. package/dist/Modal/Modal.js +1 -0
  29. package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +56 -53
  30. package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +3 -3
  31. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.d.ts +1 -1
  32. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.js +2 -2
  33. package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +57 -54
  34. package/dist/NavigationMenu/AxosBank/NavBar.css.d.ts +2 -0
  35. package/dist/NavigationMenu/AxosBank/NavBar.css.js +9 -0
  36. package/dist/NavigationMenu/AxosBank/NavBar.module.js +170 -0
  37. package/dist/NavigationMenu/AxosBank/NavData.d.ts +31 -0
  38. package/dist/NavigationMenu/AxosBank/NavData.js +132 -0
  39. package/dist/NavigationMenu/AxosBank/SubNavBar.d.ts +1 -0
  40. package/dist/NavigationMenu/AxosBank/SubNavBar.js +2892 -0
  41. package/dist/NavigationMenu/AxosBank/SubNavbar.css.d.ts +4 -0
  42. package/dist/NavigationMenu/AxosBank/SubNavbar.css.js +13 -0
  43. package/dist/NavigationMenu/AxosBank/index.d.ts +2 -0
  44. package/dist/NavigationMenu/AxosBank/index.js +703 -0
  45. package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +43 -40
  46. package/dist/NavigationMenu/NavItem/index.js +2 -1
  47. package/dist/SetContainer/SetContainer.js +1 -0
  48. package/dist/VideoWrapper/index.js +3 -3
  49. package/dist/assets/Button/Button.css +2 -2
  50. package/dist/assets/CallToActionBar/CallToActionBar.css +21 -34
  51. package/dist/assets/Carousel/Carousel.css +1 -0
  52. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +119 -115
  53. package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +122 -118
  54. package/dist/assets/NavigationMenu/AxosBank/NavBar.css +9 -0
  55. package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +626 -0
  56. package/dist/assets/NavigationMenu/AxosBank/SubNavbar.css +17 -0
  57. package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +85 -81
  58. package/package.json +6 -7
@@ -0,0 +1,703 @@
1
+ "use client";
2
+ import { jsxs, jsx } from "react/jsx-runtime";
3
+ import { Button } from "../../Button/Button.js";
4
+ import "../../Button/Button.css.js";
5
+ import { useState, useRef, useEffect } from "react";
6
+ import { useClickAway } from "react-use";
7
+ import clsx from "clsx";
8
+ import Image from "next/image.js";
9
+ import Link from "next/link.js";
10
+ import { NavItem } from "../NavItem/index.js";
11
+ import { Sign_in_btn, expand } from "./NavBar.css.js";
12
+ import styles from "./NavBar.module.js";
13
+ import { navItems } from "./NavData.js";
14
+ import SubNavBar from "./SubNavBar.js";
15
+ function NavBar() {
16
+ const [isOpenSignIn, setisOpenSignIn] = useState(false);
17
+ const [isOpenSignInToggle, setisOpenSignInToggle] = useState(false);
18
+ const [isOpenMobile, setisOpenMobile] = useState(false);
19
+ const [activeIndex, setActiveIndex] = useState();
20
+ const [lastNavItem, setLastNavItem] = useState();
21
+ const ref = useRef(null);
22
+ const toggle = () => setisOpenSignIn(!isOpenSignIn);
23
+ const signInToggle = () => setisOpenSignInToggle(!isOpenSignInToggle);
24
+ const mobileToggle = () => setisOpenMobile(!isOpenMobile);
25
+ const handleClick = (index) => setActiveIndex(index);
26
+ const [isOpenProducts1, setisOpenProducts1] = useState(false);
27
+ const [isOpenProducts2, setisOpenProducts2] = useState(false);
28
+ const [isOpenProducts3, setisOpenProducts3] = useState(false);
29
+ const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
30
+ const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
31
+ const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
32
+ const getActiveIndex = () => {
33
+ const pathname = "/" + location.pathname.split("/")[1];
34
+ const index = navItems.findIndex(
35
+ (path) => path.url === pathname
36
+ );
37
+ setActiveIndex(index);
38
+ };
39
+ useEffect(() => {
40
+ getActiveIndex();
41
+ }, [activeIndex]);
42
+ useEffect(() => {
43
+ setLastNavItem(navItems[navItems.length - 1]);
44
+ }, []);
45
+ useClickAway(ref, (e) => {
46
+ if (e?.target?.tagName !== "A") {
47
+ setisOpenSignIn(false);
48
+ }
49
+ });
50
+ return /* @__PURE__ */ jsxs("header", { id: "header", children: [
51
+ /* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
52
+ /* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
53
+ /* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx(
54
+ Link,
55
+ {
56
+ href: "/",
57
+ "aria-label": "return to axos advisor services homepage",
58
+ children: /* @__PURE__ */ jsx(
59
+ Image,
60
+ {
61
+ src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
62
+ alt: "",
63
+ width: 137,
64
+ height: 30,
65
+ priority: true
66
+ }
67
+ )
68
+ }
69
+ ) }),
70
+ /* @__PURE__ */ jsx("nav", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
71
+ (item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
72
+ NavItem,
73
+ {
74
+ className: styles.main_nav_link,
75
+ onClick: handleClick,
76
+ index: i,
77
+ name: item.name,
78
+ url: item.url,
79
+ isActive: activeIndex == i
80
+ },
81
+ i
82
+ )
83
+ ) }) })
84
+ ] }) }),
85
+ /* @__PURE__ */ jsx(
86
+ "button",
87
+ {
88
+ className: clsx(styles.mobile_only, styles.hamburger),
89
+ onClick: mobileToggle,
90
+ children: /* @__PURE__ */ jsx(
91
+ "svg",
92
+ {
93
+ width: "24",
94
+ height: "24",
95
+ viewBox: "0 0 24 24",
96
+ fill: "none",
97
+ xmlns: "http://www.w3.org/2000/svg",
98
+ children: /* @__PURE__ */ jsx(
99
+ "path",
100
+ {
101
+ fillRule: "evenodd",
102
+ clipRule: "evenodd",
103
+ d: "M22.5 15.75V17.25H1.5V15.75H22.5ZM22.5 11.25V12.75H1.5V11.25H22.5ZM22.5 6.75V8.25H1.5V6.75H22.5Z",
104
+ fill: "#4A5560"
105
+ }
106
+ )
107
+ }
108
+ )
109
+ }
110
+ ),
111
+ /* @__PURE__ */ jsx("div", { className: `${styles.mobile_only} ${styles.mobile_logo}`, children: /* @__PURE__ */ jsx(Link, { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
112
+ Image,
113
+ {
114
+ src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
115
+ alt: "",
116
+ width: 130,
117
+ height: 58
118
+ }
119
+ ) }) }),
120
+ /* @__PURE__ */ jsx("div", { className: styles.signin_wrap, children: /* @__PURE__ */ jsxs(
121
+ "div",
122
+ {
123
+ className: `${styles.desktop_only} flex_row middle relative`,
124
+ ref,
125
+ children: [
126
+ lastNavItem && /* @__PURE__ */ jsx(
127
+ NavItem,
128
+ {
129
+ url: lastNavItem.url,
130
+ name: lastNavItem.name,
131
+ className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
132
+ isActive: activeIndex == navItems.length,
133
+ onClick: handleClick,
134
+ index: navItems.length
135
+ },
136
+ navItems.length + 1
137
+ ),
138
+ /* @__PURE__ */ jsxs(
139
+ Button,
140
+ {
141
+ className: clsx(
142
+ styles.signin_btn,
143
+ "flex_row",
144
+ "center",
145
+ "middle",
146
+ isOpenSignIn ? styles.open : "",
147
+ Sign_in_btn
148
+ ),
149
+ as: "button",
150
+ type: "button",
151
+ color: "primary",
152
+ id: "signIn",
153
+ action: toggle,
154
+ size: "small",
155
+ "aria-controls": "signin-drop-menu",
156
+ children: [
157
+ /* @__PURE__ */ jsx("span", { children: "Sign In" }),
158
+ /* @__PURE__ */ jsx(
159
+ "svg",
160
+ {
161
+ width: "20",
162
+ height: "12",
163
+ viewBox: "0 0 20 12",
164
+ fill: "none",
165
+ xmlns: "http://www.w3.org/2000/svg",
166
+ children: /* @__PURE__ */ jsx(
167
+ "path",
168
+ {
169
+ d: "M0.46875 1.76574L9.99908 11.2961L19.5294 1.76574L18.4687 0.705078L9.99908 9.17491L1.52941 0.705078L0.46875 1.76574Z",
170
+ fill: "white"
171
+ }
172
+ )
173
+ }
174
+ )
175
+ ]
176
+ }
177
+ ),
178
+ /* @__PURE__ */ jsx(
179
+ "div",
180
+ {
181
+ className: `${styles.signin_dropdown} ${styles.shadow} rounded bg_white`,
182
+ children: /* @__PURE__ */ jsx("div", { className: styles.opacity, children: /* @__PURE__ */ jsxs(
183
+ "ul",
184
+ {
185
+ className: "list_unstyled",
186
+ role: "menu",
187
+ "aria-expanded": isOpenSignIn,
188
+ id: "signin-drop-menu",
189
+ children: [
190
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
191
+ /* @__PURE__ */ jsx("span", { className: styles.signin_header, children: "Personal" }),
192
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
193
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
194
+ Link,
195
+ {
196
+ href: `https://onlinebanking.axosbank.com/auth/Login`,
197
+ role: "menuitem",
198
+ children: "Account Login"
199
+ }
200
+ ) }),
201
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
202
+ Link,
203
+ {
204
+ href: `https://loanpayment.axosbank.com`,
205
+ role: "menuitem",
206
+ children: "Make a Payment"
207
+ }
208
+ ) })
209
+ ] })
210
+ ] }),
211
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
212
+ /* @__PURE__ */ jsx("span", { className: `${styles.signin_header}`, children: "Business" }),
213
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
214
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(Link, { href: "/business/login", role: "menuitem", children: "Business Banking Login" }) }),
215
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
216
+ Link,
217
+ {
218
+ href: "/business/MWA-business-banking",
219
+ role: "menuitem",
220
+ children: "MWA Business Banking"
221
+ }
222
+ ) }),
223
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", role: "menuitem", children: "Commercial Portal" }) })
224
+ ] })
225
+ ] }),
226
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
227
+ /* @__PURE__ */ jsx(
228
+ "span",
229
+ {
230
+ role: "menuitem",
231
+ className: `${styles.signin_header}`,
232
+ children: "Partners"
233
+ }
234
+ ),
235
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
236
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
237
+ Link,
238
+ {
239
+ href: "https://thirdpartylending.axosbank.com/index",
240
+ role: "menuitem",
241
+ children: "Wholesale and Correspondent"
242
+ }
243
+ ) }),
244
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
245
+ Link,
246
+ {
247
+ href: "https://arms.axosadvisor.com/",
248
+ role: "menuitem",
249
+ children: "Advisor Login"
250
+ }
251
+ ) })
252
+ ] })
253
+ ] }),
254
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
255
+ /* @__PURE__ */ jsx(
256
+ "span",
257
+ {
258
+ role: "menuitem",
259
+ className: `${styles.signin_header}`,
260
+ children: "Partners"
261
+ }
262
+ ),
263
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
264
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
265
+ Link,
266
+ {
267
+ href: "https://thirdpartylending.axosbank.com/index",
268
+ role: "menuitem",
269
+ children: "Wholesale and Correspondent"
270
+ }
271
+ ) }),
272
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
273
+ Link,
274
+ {
275
+ href: "https://arms.axosadvisor.com/",
276
+ role: "menuitem",
277
+ children: "Advisor Login"
278
+ }
279
+ ) })
280
+ ] })
281
+ ] }),
282
+ /* @__PURE__ */ jsxs(
283
+ "li",
284
+ {
285
+ className: `${styles.signin_subheader} ${styles.sigin_footer} relative`,
286
+ children: [
287
+ /* @__PURE__ */ jsx(Link, { href: "/customer-support", role: "menuitem", children: "Customer Support" }),
288
+ /* @__PURE__ */ jsx(Link, { href: "/return-to-application", role: "menuitem", children: "Return to Application" })
289
+ ]
290
+ }
291
+ )
292
+ ]
293
+ }
294
+ ) })
295
+ }
296
+ )
297
+ ]
298
+ }
299
+ ) })
300
+ ] }) }) }),
301
+ /* @__PURE__ */ jsx(SubNavBar, {}),
302
+ /* @__PURE__ */ jsx(
303
+ "div",
304
+ {
305
+ className: clsx(
306
+ styles.mobile_nav,
307
+ styles.mobile_only,
308
+ "relative",
309
+ "bg_white",
310
+ isOpenMobile ? styles.mobile_opened : ""
311
+ ),
312
+ "aria-expanded": isOpenMobile,
313
+ role: "menu",
314
+ children: /* @__PURE__ */ jsxs("div", { className: clsx(styles.inner_wrapper, "bg_white"), children: [
315
+ /* @__PURE__ */ jsxs("div", { className: `${styles.mobile_header} relative text_center`, children: [
316
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Welcome" }),
317
+ /* @__PURE__ */ jsx("button", { onClick: mobileToggle, "aria-label": "close navigation menu", children: /* @__PURE__ */ jsx(
318
+ "svg",
319
+ {
320
+ xmlns: "http://www.w3.org/2000/svg",
321
+ width: "24",
322
+ height: "24",
323
+ viewBox: "0 0 24 24",
324
+ fill: "none",
325
+ children: /* @__PURE__ */ jsx(
326
+ "path",
327
+ {
328
+ d: "M20.2812 2.65625L21.3419 3.71691L13.0602 11.9982L21.3419 20.2812L20.2812 21.3419L11.9982 13.0602L3.71691 21.3419L2.65625 20.2812L10.9377 11.9982L2.65625 3.71691L3.71691 2.65625L11.9982 10.9377L20.2812 2.65625Z",
329
+ fill: "#4A5560"
330
+ }
331
+ )
332
+ }
333
+ ) })
334
+ ] }),
335
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenMobile, children: [
336
+ /* @__PURE__ */ jsxs(
337
+ "li",
338
+ {
339
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
340
+ id: "dd_1",
341
+ children: [
342
+ /* @__PURE__ */ jsxs(
343
+ "a",
344
+ {
345
+ href: "#",
346
+ onClick: toggleProducts1,
347
+ role: "button",
348
+ className: clsx("flex_row", "between"),
349
+ children: [
350
+ "Personal",
351
+ /* @__PURE__ */ jsx(
352
+ "span",
353
+ {
354
+ className: clsx(
355
+ styles.icon_wrap,
356
+ isOpenProducts1 && styles.open
357
+ ),
358
+ children: /* @__PURE__ */ jsx(
359
+ "svg",
360
+ {
361
+ xmlns: "http://www.w3.org/2000/svg",
362
+ width: "24",
363
+ height: "24",
364
+ viewBox: "0 0 24 24",
365
+ fill: "none",
366
+ children: /* @__PURE__ */ jsx(
367
+ "path",
368
+ {
369
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
370
+ fill: "#4A5560"
371
+ }
372
+ )
373
+ }
374
+ )
375
+ }
376
+ )
377
+ ]
378
+ }
379
+ ),
380
+ /* @__PURE__ */ jsxs(
381
+ "div",
382
+ {
383
+ className: clsx(styles.sub_menu, isOpenProducts1 && expand),
384
+ children: [
385
+ /* @__PURE__ */ jsx(
386
+ Link,
387
+ {
388
+ href: "/personal",
389
+ className: styles.main,
390
+ role: "heading",
391
+ children: "Personal Home"
392
+ }
393
+ ),
394
+ /* @__PURE__ */ jsx(Link, { href: "/personal", role: "menuitem", children: "Bank" }),
395
+ /* @__PURE__ */ jsx(Link, { href: "/personal/borrow", role: "menuitem", children: "Borrow" }),
396
+ /* @__PURE__ */ jsx(Link, { href: "https://www.axos.com/invest", role: "menuitem", children: "Invest" }),
397
+ /* @__PURE__ */ jsx(Link, { href: "/personal/plan", role: "menuitem", children: "Plan" })
398
+ ]
399
+ }
400
+ )
401
+ ]
402
+ }
403
+ ),
404
+ /* @__PURE__ */ jsxs(
405
+ "li",
406
+ {
407
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
408
+ id: "dd_2",
409
+ children: [
410
+ /* @__PURE__ */ jsxs(
411
+ "a",
412
+ {
413
+ href: "#",
414
+ onClick: toggleProducts2,
415
+ role: "button",
416
+ className: clsx("flex_row", "between"),
417
+ children: [
418
+ "Business",
419
+ /* @__PURE__ */ jsx(
420
+ "span",
421
+ {
422
+ className: clsx(
423
+ styles.icon_wrap,
424
+ isOpenProducts2 && styles.open
425
+ ),
426
+ children: /* @__PURE__ */ jsx(
427
+ "svg",
428
+ {
429
+ xmlns: "http://www.w3.org/2000/svg",
430
+ width: "24",
431
+ height: "24",
432
+ viewBox: "0 0 24 24",
433
+ fill: "none",
434
+ children: /* @__PURE__ */ jsx(
435
+ "path",
436
+ {
437
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
438
+ fill: "#4A5560"
439
+ }
440
+ )
441
+ }
442
+ )
443
+ }
444
+ )
445
+ ]
446
+ }
447
+ ),
448
+ /* @__PURE__ */ jsxs(
449
+ "div",
450
+ {
451
+ className: clsx(styles.sub_menu, isOpenProducts2 && expand),
452
+ children: [
453
+ /* @__PURE__ */ jsx(
454
+ Link,
455
+ {
456
+ href: "/business",
457
+ className: styles.main,
458
+ role: "heading",
459
+ children: "Business Home"
460
+ }
461
+ ),
462
+ /* @__PURE__ */ jsx(
463
+ Link,
464
+ {
465
+ href: "/business/small-business-banking",
466
+ role: "menuitem",
467
+ children: "Small Business Banking"
468
+ }
469
+ ),
470
+ /* @__PURE__ */ jsx(Link, { href: "/business/commercial-banking", role: "menuitem", children: "Commercial Banking" }),
471
+ /* @__PURE__ */ jsx(Link, { href: "/business/commercial-lending", role: "menuitem", children: "Commercial Lending" })
472
+ ]
473
+ }
474
+ )
475
+ ]
476
+ }
477
+ ),
478
+ /* @__PURE__ */ jsxs(
479
+ "li",
480
+ {
481
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
482
+ id: "dd_3",
483
+ children: [
484
+ /* @__PURE__ */ jsxs(
485
+ "a",
486
+ {
487
+ href: "#",
488
+ onClick: toggleProducts3,
489
+ role: "button",
490
+ className: clsx("flex_row", "between"),
491
+ children: [
492
+ "Partners",
493
+ /* @__PURE__ */ jsx(
494
+ "span",
495
+ {
496
+ className: clsx(
497
+ styles.icon_wrap,
498
+ isOpenProducts3 && styles.open
499
+ ),
500
+ children: /* @__PURE__ */ jsx(
501
+ "svg",
502
+ {
503
+ xmlns: "http://www.w3.org/2000/svg",
504
+ width: "24",
505
+ height: "24",
506
+ viewBox: "0 0 24 24",
507
+ fill: "none",
508
+ children: /* @__PURE__ */ jsx(
509
+ "path",
510
+ {
511
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
512
+ fill: "#4A5560"
513
+ }
514
+ )
515
+ }
516
+ )
517
+ }
518
+ )
519
+ ]
520
+ }
521
+ ),
522
+ /* @__PURE__ */ jsxs(
523
+ "div",
524
+ {
525
+ className: clsx(styles.sub_menu, isOpenProducts3 && expand),
526
+ children: [
527
+ /* @__PURE__ */ jsx(
528
+ Link,
529
+ {
530
+ href: "/partners",
531
+ className: styles.main,
532
+ role: "heading",
533
+ children: "Partners Home"
534
+ }
535
+ ),
536
+ /* @__PURE__ */ jsx(
537
+ Link,
538
+ {
539
+ href: "https://lavictoirefinance.com/dealers",
540
+ role: "menuitem",
541
+ children: "New! Marine Dealer Floorplan Finance"
542
+ }
543
+ ),
544
+ /* @__PURE__ */ jsx(
545
+ Link,
546
+ {
547
+ href: "/partners/wholesale-correspondent-portfolio-lending",
548
+ role: "menuitem",
549
+ children: "Wholesale Lending"
550
+ }
551
+ ),
552
+ /* @__PURE__ */ jsx(
553
+ Link,
554
+ {
555
+ href: "/business/small-balance-commercial",
556
+ role: "menuitem",
557
+ children: "Small Balance Commercial"
558
+ }
559
+ ),
560
+ /* @__PURE__ */ jsx(Link, { href: "https://www.axosadvisor.com/", role: "menuitem", children: "Financial Advisors" }),
561
+ /* @__PURE__ */ jsx(Link, { href: "/partners/dealer-services", role: "menuitem", children: "Dealer Services" }),
562
+ /* @__PURE__ */ jsx(
563
+ Link,
564
+ {
565
+ href: "/partners/strategic-partnerships",
566
+ role: "menuitem",
567
+ children: "Strategic Partnerships"
568
+ }
569
+ )
570
+ ]
571
+ }
572
+ )
573
+ ]
574
+ }
575
+ ),
576
+ /* @__PURE__ */ jsxs(
577
+ "li",
578
+ {
579
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
580
+ id: "dd_4",
581
+ children: [
582
+ /* @__PURE__ */ jsxs(
583
+ "a",
584
+ {
585
+ href: "#",
586
+ role: "button",
587
+ className: `flex_row between ${styles.btn}`,
588
+ onClick: signInToggle,
589
+ children: [
590
+ "Sign In",
591
+ /* @__PURE__ */ jsx(
592
+ "span",
593
+ {
594
+ className: clsx(
595
+ styles.icon_wrap,
596
+ isOpenSignInToggle && styles.open
597
+ ),
598
+ children: /* @__PURE__ */ jsx(
599
+ "svg",
600
+ {
601
+ xmlns: "http://www.w3.org/2000/svg",
602
+ width: "24",
603
+ height: "24",
604
+ viewBox: "0 0 24 24",
605
+ fill: "none",
606
+ children: /* @__PURE__ */ jsx(
607
+ "path",
608
+ {
609
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
610
+ fill: "#4A5560"
611
+ }
612
+ )
613
+ }
614
+ )
615
+ }
616
+ )
617
+ ]
618
+ }
619
+ ),
620
+ /* @__PURE__ */ jsxs(
621
+ "div",
622
+ {
623
+ className: clsx(
624
+ styles.sub_menu,
625
+ isOpenSignInToggle && expand
626
+ ),
627
+ children: [
628
+ /* @__PURE__ */ jsx("span", { className: styles.main, role: "heading", children: "Personal" }),
629
+ /* @__PURE__ */ jsx(
630
+ Link,
631
+ {
632
+ href: "https://onlinebanking.axosbank.com/auth/Login",
633
+ role: "menuitem",
634
+ children: "Account Login"
635
+ }
636
+ ),
637
+ /* @__PURE__ */ jsx(
638
+ Link,
639
+ {
640
+ href: "https://loanpayment.axosbank.com",
641
+ role: "menuitem",
642
+ children: "Make a Payment"
643
+ }
644
+ ),
645
+ /* @__PURE__ */ jsx("span", { className: styles.main, role: "heading", children: "Business" }),
646
+ /* @__PURE__ */ jsx(Link, { href: "/business/login", role: "menuitem", children: "Business Banking Login" }),
647
+ /* @__PURE__ */ jsx(Link, { href: "/business/MWA-business-banking", role: "menuitem", children: "MWA Business Banking" }),
648
+ /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", role: "menuitem", children: "Commercial Portal" }),
649
+ /* @__PURE__ */ jsx("span", { className: styles.main, role: "heading", children: "Partners" }),
650
+ /* @__PURE__ */ jsx(Link, { href: "/business/login", role: "menuitem", children: "Business Banking Login" }),
651
+ /* @__PURE__ */ jsx(
652
+ Link,
653
+ {
654
+ href: "https://thirdpartylending.axosbank.com/index",
655
+ role: "menuitem",
656
+ children: "Wholesale and Correspondent"
657
+ }
658
+ ),
659
+ /* @__PURE__ */ jsx(Link, { href: "https://arms.axosadvisor.com/", role: "menuitem", children: "Advisor Login" })
660
+ ]
661
+ }
662
+ )
663
+ ]
664
+ }
665
+ ),
666
+ /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
667
+ Link,
668
+ {
669
+ href: "/return-to-application",
670
+ role: "button",
671
+ className: `flex_row between ${styles.btn}`,
672
+ children: "Return to Application"
673
+ }
674
+ ) })
675
+ ] }) }),
676
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_footer, children: /* @__PURE__ */ jsxs("div", { className: "flex_row between", children: [
677
+ /* @__PURE__ */ jsxs(
678
+ "div",
679
+ {
680
+ className: `${styles.mobile_footer_content} flex_col between`,
681
+ children: [
682
+ /* @__PURE__ */ jsx("p", { children: /* @__PURE__ */ jsx("strong", { children: "Customer Support" }) }),
683
+ /* @__PURE__ */ jsx("div", { className: styles.footer_cta, children: /* @__PURE__ */ jsx(
684
+ Button,
685
+ {
686
+ color: "primary",
687
+ targetUrl: "/customer-support/personal-support/contact-us#",
688
+ children: "Contact Us"
689
+ }
690
+ ) })
691
+ ]
692
+ }
693
+ ),
694
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_footer_media, children: " " })
695
+ ] }) })
696
+ ] })
697
+ }
698
+ )
699
+ ] });
700
+ }
701
+ export {
702
+ NavBar as default
703
+ };