@axos-web-dev/shared-components 0.0.91 → 0.0.92

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 (46) hide show
  1. package/dist/ATMLocator/ATMLocator.js +2 -0
  2. package/dist/Calculators/Calculator.js +2 -0
  3. package/dist/CallToActionBar/index.js +47 -30
  4. package/dist/Carousel/index.js +2 -0
  5. package/dist/Chevron/index.js +2 -0
  6. package/dist/Comparison/Comparison.js +3 -1
  7. package/dist/Comparison/ComparisonSet.js +2 -0
  8. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
  9. package/dist/Forms/ContactUsBusiness.js +2 -0
  10. package/dist/Forms/ContactUsNMLSId.js +2 -0
  11. package/dist/Forms/EmailOnly.js +2 -0
  12. package/dist/Forms/SuccesForm.js +2 -0
  13. package/dist/Hyperlink/index.js +2 -0
  14. package/dist/ImageLink/ImageLink.js +2 -0
  15. package/dist/ImageLink/ImageLinkSet.js +2 -0
  16. package/dist/ImageLink/index.js +2 -0
  17. package/dist/Modal/Modal.js +2 -0
  18. package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
  19. package/dist/NavigationMenu/AxosBank/SubNavBar.js +1910 -1737
  20. package/dist/NavigationMenu/AxosBank/index.js +8 -15
  21. package/dist/NavigationMenu/AxosClearing/NavBar.css.d.ts +1 -0
  22. package/dist/NavigationMenu/AxosClearing/NavBar.css.js +5 -0
  23. package/dist/NavigationMenu/AxosClearing/NavBar.module.js +98 -0
  24. package/dist/NavigationMenu/AxosClearing/NavData.d.ts +21 -0
  25. package/dist/NavigationMenu/AxosClearing/NavData.js +63 -0
  26. package/dist/NavigationMenu/AxosClearing/SubNavBar.d.ts +1 -0
  27. package/dist/NavigationMenu/AxosClearing/SubNavBar.js +56 -0
  28. package/dist/NavigationMenu/AxosClearing/index.d.ts +2 -0
  29. package/dist/NavigationMenu/AxosClearing/index.js +470 -0
  30. package/dist/NavigationMenu/index.d.ts +1 -0
  31. package/dist/NavigationMenu/index.js +5 -3
  32. package/dist/SetContainer/SetContainer.js +2 -0
  33. package/dist/Table/Table.d.ts +13 -0
  34. package/dist/TopicalNavSet/TopicalNavSet.js +3 -3
  35. package/dist/assets/CallToActionBar/CallToActionBar.css +3 -1
  36. package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +126 -124
  37. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css +4 -0
  38. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +405 -0
  39. package/dist/assets/globals.css +71 -0
  40. package/dist/icons/Clock/index.d.ts +4 -0
  41. package/dist/icons/Clock/index.js +22 -0
  42. package/dist/icons/index.d.ts +1 -0
  43. package/dist/icons/index.js +14 -12
  44. package/dist/main.js +52 -48
  45. package/dist/utils/allowedAxosDomains.js +1 -0
  46. package/package.json +1 -1
@@ -15,7 +15,7 @@ import "../../Chevron/Chevron.css.js";
15
15
  import "../../IconBillboard/IconBillboard.css.js";
16
16
  import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
17
17
  import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
18
- import { useLocation } from "react-use";
18
+ import "react-use";
19
19
  import "../../Table/Table.css.js";
20
20
  import "../../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
21
21
  import "@hookform/resolvers/zod";
@@ -74,6 +74,8 @@ import Link from "next/link.js";
74
74
  /* empty css */
75
75
  import styles from "./NavBar.module.js";
76
76
  import { subNavItems } from "./NavData.js";
77
+ /* empty css */
78
+ import { usePathname } from "next/navigation.js";
77
79
  /* empty css */
78
80
  /* empty css */
79
81
  import "../../StepItem/StepItem.css.js";
@@ -86,8 +88,7 @@ import "next/script.js";
86
88
  /* empty css */
87
89
  import { sub_nav, dd_media } from "./SubNavbar.css.js";
88
90
  function SubNavBar() {
89
- const { pathname } = useLocation();
90
- const location = useLocation();
91
+ const pathname = usePathname();
91
92
  const [hoveredLink, setHoveredLink] = useState(void 0);
92
93
  const handleMouseEnter = (link) => setHoveredLink(link);
93
94
  const handleMouseLeave = () => setHoveredLink(void 0);
@@ -95,22 +96,21 @@ function SubNavBar() {
95
96
  const [showNavbar, setShowNavbar] = useState(false);
96
97
  const support = subNavItems.support;
97
98
  const about = subNavItems.about;
98
- const isHomepage = location.pathname === "/";
99
+ const isHomepage = pathname === "/";
99
100
  useEffect(() => {
100
101
  setShowNavbar(
101
102
  () => [
102
- "/",
103
103
  "/personal",
104
104
  "/business",
105
105
  "/partners",
106
- "/customer-suppor",
106
+ "/customer-support",
107
107
  "/about-us"
108
- ].some((el) => pathname?.includes(el))
108
+ ].some((el) => pathname?.includes(el) || isHomepage)
109
109
  );
110
110
  }, [pathname]);
111
- return showNavbar ? /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: styles.header_sub_row, children: [
112
- /* @__PURE__ */ jsx("nav", { children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
113
- (pathname?.includes("/personal") || isHomepage) && /* @__PURE__ */ jsxs(Fragment, { children: [
111
+ return showNavbar ? /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsxs("nav", { children: [
112
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
113
+ (isHomepage || pathname?.includes("/personal")) && /* @__PURE__ */ jsxs(Fragment, { children: [
114
114
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsxs(
115
115
  "a",
116
116
  {
@@ -460,1302 +460,1808 @@ function SubNavBar() {
460
460
  (item) => /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(Link, { href: item.url, role: "menuitem", children: item.name }) }, `snb-${item.id}`)
461
461
  ),
462
462
  pathname?.includes("/about-us") && about.map((item) => /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(Link, { href: item.url, role: "menuitem", children: item.name }) }, `snb-${item.id}`))
463
- ] }) }),
464
- hoveredLink === "bank" && /* @__PURE__ */ jsx(
465
- "div",
466
- {
467
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
468
- role: "menu",
469
- onMouseLeave: handleMouseLeave,
470
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
471
- /* @__PURE__ */ jsxs(
472
- "div",
473
- {
474
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
475
- children: [
476
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
477
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Checking" }),
478
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Take control of your finances and find a checking solution that fits your needs." })
479
- ] }),
480
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
481
- Image,
482
- {
483
- src: `https://images.axos.com/o9ov1v03uwqk/eEwgc8g9ws7oWWUTh2G8X/de2e3ede3ca7c3762e052d9cba375de7/nav-submenu-bank.svg`,
484
- alt: "",
485
- width: 233,
486
- height: 222
487
- }
488
- ) }),
489
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
490
- Link,
491
- {
492
- href: `/personal/checking`,
493
- "aria-label": "learn more about available checking accounts",
494
- className: "text_center bg_white ",
495
- children: "Learn More"
496
- }
497
- ) })
498
- ]
499
- }
500
- ),
501
- /* @__PURE__ */ jsxs(
502
- "div",
503
- {
504
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
505
- children: [
506
- /* @__PURE__ */ jsxs(
507
- "div",
508
- {
509
- className: `${styles.headline} flex_row middle between`,
510
- children: [
511
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Take your money further, faster" }),
512
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
513
- /* @__PURE__ */ jsx(
514
- Image,
463
+ ] }),
464
+ /* @__PURE__ */ jsxs("div", { className: "relative", children: [
465
+ hoveredLink === "bank" && /* @__PURE__ */ jsx(
466
+ "div",
467
+ {
468
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
469
+ role: "menu",
470
+ onMouseLeave: handleMouseLeave,
471
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
472
+ /* @__PURE__ */ jsxs(
473
+ "div",
474
+ {
475
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
476
+ children: [
477
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
478
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Checking" }),
479
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Take control of your finances and find a checking solution that fits your needs." })
480
+ ] }),
481
+ /* @__PURE__ */ jsx(
482
+ "div",
483
+ {
484
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
485
+ children: /* @__PURE__ */ jsx(
486
+ Image,
487
+ {
488
+ src: `https://images.axos.com/o9ov1v03uwqk/eEwgc8g9ws7oWWUTh2G8X/de2e3ede3ca7c3762e052d9cba375de7/nav-submenu-bank.svg`,
489
+ alt: "",
490
+ width: 233,
491
+ height: 222
492
+ }
493
+ )
494
+ }
495
+ ),
496
+ /* @__PURE__ */ jsx(
497
+ "div",
498
+ {
499
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
500
+ children: /* @__PURE__ */ jsx(
501
+ Link,
502
+ {
503
+ href: `/personal/checking`,
504
+ "aria-label": "learn more about available checking accounts",
505
+ className: "text_center bg_white ",
506
+ children: "Learn More"
507
+ }
508
+ )
509
+ }
510
+ )
511
+ ]
512
+ }
513
+ ),
514
+ /* @__PURE__ */ jsxs(
515
+ "div",
516
+ {
517
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
518
+ children: [
519
+ /* @__PURE__ */ jsxs(
520
+ "div",
521
+ {
522
+ className: `${styles.headline} flex_row middle between`,
523
+ children: [
524
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Take your money further, faster" }),
525
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
526
+ /* @__PURE__ */ jsx(
527
+ Image,
528
+ {
529
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
530
+ alt: "",
531
+ width: 20,
532
+ height: 20
533
+ }
534
+ ),
535
+ /* @__PURE__ */ jsx(
536
+ "div",
537
+ {
538
+ className: `${styles.headline_cta} ${styles.ml_8}`,
539
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
540
+ }
541
+ )
542
+ ] })
543
+ ]
544
+ }
545
+ ),
546
+ /* @__PURE__ */ jsx("hr", {}),
547
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
548
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
549
+ /* @__PURE__ */ jsx(
550
+ Image,
551
+ {
552
+ src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
553
+ alt: "",
554
+ width: 20,
555
+ height: 20
556
+ }
557
+ ),
558
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
559
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
560
+ Link,
515
561
  {
516
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
517
- alt: "",
518
- width: 20,
519
- height: 20
562
+ href: "/personal/checking",
563
+ role: "heading",
564
+ children: "Checking"
520
565
  }
521
- ),
522
- /* @__PURE__ */ jsx(
523
- "div",
566
+ ) }),
567
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
568
+ Link,
524
569
  {
525
- className: `${styles.headline_cta} ${styles.ml_8}`,
526
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
570
+ href: "/personal/checking/rewards-checking",
571
+ children: "Rewards Checking"
527
572
  }
528
- )
573
+ ) }),
574
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
575
+ Link,
576
+ {
577
+ href: "/personal/checking/essential-checking",
578
+ children: "Essential Checking"
579
+ }
580
+ ) }),
581
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
582
+ Link,
583
+ {
584
+ href: "/personal/checking/first-checking",
585
+ children: "First Checking"
586
+ }
587
+ ) }),
588
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
589
+ Link,
590
+ {
591
+ href: "/personal/checking/cashback-checking",
592
+ children: "CashBack Checking"
593
+ }
594
+ ) }),
595
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
596
+ Link,
597
+ {
598
+ href: "/personal/checking/golden-checking",
599
+ children: "Golden Checking"
600
+ }
601
+ ) })
529
602
  ] })
530
- ]
531
- }
532
- ),
533
- /* @__PURE__ */ jsx("hr", {}),
534
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
535
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
536
- /* @__PURE__ */ jsx(
537
- Image,
538
- {
539
- src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
540
- alt: "",
541
- width: 20,
542
- height: 20
543
- }
544
- ),
545
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
546
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/checking", role: "heading", children: "Checking" }) }),
547
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/checking/rewards-checking", children: "Rewards Checking" }) }),
548
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
549
- Link,
550
- {
551
- href: "/personal/checking/essential-checking",
552
- children: "Essential Checking"
553
- }
554
- ) }),
555
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/checking/first-checking", children: "First Checking" }) }),
556
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/checking/cashback-checking", children: "CashBack Checking" }) }),
557
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/checking/golden-checking", children: "Golden Checking" }) })
603
+ ] }),
604
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
605
+ /* @__PURE__ */ jsx(
606
+ Image,
607
+ {
608
+ src: `https://images.axos.com/o9ov1v03uwqk/5ODchMOjrkKa90SBWKwcDw/e5508c26d341bfb58318e052d89f4771/nav-submenu-savings-icon.svg`,
609
+ alt: "",
610
+ width: 20,
611
+ height: 20
612
+ }
613
+ ),
614
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
615
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings", role: "heading", children: "Savings" }) }),
616
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
617
+ Link,
618
+ {
619
+ href: "/personal/savings/high-yield-savings",
620
+ children: "High Yield Savings"
621
+ }
622
+ ) }),
623
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
624
+ Link,
625
+ {
626
+ href: "/personal/savings/high-yield-money-market",
627
+ children: "High Yield Money Market"
628
+ }
629
+ ) }),
630
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings/first-savings", children: "First Savings" }) })
631
+ ] })
632
+ ] }),
633
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
634
+ /* @__PURE__ */ jsx(
635
+ Image,
636
+ {
637
+ src: `https://images.axos.com/o9ov1v03uwqk/6HFMuiXSvCndJhrPrt4JYk/0a8b9411818a8116943487f946867fe7/nav-submenu-cds-icon.svg`,
638
+ alt: "",
639
+ width: 20,
640
+ height: 20
641
+ }
642
+ ),
643
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `/personal/cds`, role: "heading", children: "Certificates of Deposit" }) }) })
644
+ ] }),
645
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
646
+ /* @__PURE__ */ jsx(
647
+ Image,
648
+ {
649
+ src: `https://images.axos.com/o9ov1v03uwqk/2zmsYM7kjm1WgbDkir7c3/16313ad773ff08a2d9bfa61ba161a528/nav-submenu-premier-icon.svg`,
650
+ alt: "",
651
+ width: 20,
652
+ height: 20
653
+ }
654
+ ),
655
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
656
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier", role: "heading", children: "Premier" }) }),
657
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier/privateclient", children: "Private Client" }) }),
658
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
659
+ Link,
660
+ {
661
+ href: "/personal/premier/insureguardplus",
662
+ children: "InsureGuard+"
663
+ }
664
+ ) }),
665
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
666
+ Link,
667
+ {
668
+ href: "/personal/premier/worldcheckingandsavings",
669
+ children: "World Checking & Savings"
670
+ }
671
+ ) })
672
+ ] })
673
+ ] }),
674
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
675
+ /* @__PURE__ */ jsx(
676
+ Image,
677
+ {
678
+ src: `https://images.axos.com/o9ov1v03uwqk/5JqDuUm6D5hbX2MQrbWCQq/0c6b5ed3d5e08cd03e2ca20b8e2f39ef/nav-submenu-atm-icon.svg`,
679
+ alt: "",
680
+ width: 20,
681
+ height: 20
682
+ }
683
+ ),
684
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `/atm-locator`, role: "heading", children: "ATM Locator" }) }) })
685
+ ] }),
686
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
687
+ /* @__PURE__ */ jsx(
688
+ Image,
689
+ {
690
+ src: `https://images.axos.com/o9ov1v03uwqk/6ninSDVeSycXICNX8zF4J3/75ccf4194f0b3e7209f4095457bce00d/nav-submenu-raf-icon.svg`,
691
+ alt: "",
692
+ width: 20,
693
+ height: 20
694
+ }
695
+ ),
696
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/refer-a-friend", role: "heading", children: "Refer-a-Friend" }) }) })
558
697
  ] })
698
+ ] })
699
+ ]
700
+ }
701
+ )
702
+ ] }) })
703
+ }
704
+ ),
705
+ hoveredLink === "borrow" && /* @__PURE__ */ jsx(
706
+ "div",
707
+ {
708
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
709
+ role: "menu",
710
+ onMouseLeave: handleMouseLeave,
711
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
712
+ /* @__PURE__ */ jsxs(
713
+ "div",
714
+ {
715
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
716
+ children: [
717
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
718
+ /* @__PURE__ */ jsxs("p", { role: "heading", children: [
719
+ "$0 Lender Fee",
720
+ /* @__PURE__ */ jsx("sup", { children: "1" }),
721
+ " on Home Loans"
722
+ ] }),
723
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Our best offer ever on home loans. Don't miss this limited time offer!" })
559
724
  ] }),
560
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
561
- /* @__PURE__ */ jsx(
562
- Image,
563
- {
564
- src: `https://images.axos.com/o9ov1v03uwqk/5ODchMOjrkKa90SBWKwcDw/e5508c26d341bfb58318e052d89f4771/nav-submenu-savings-icon.svg`,
565
- alt: "",
566
- width: 20,
567
- height: 20
568
- }
569
- ),
570
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
571
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings", role: "heading", children: "Savings" }) }),
572
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings/high-yield-savings", children: "High Yield Savings" }) }),
573
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
574
- Link,
725
+ /* @__PURE__ */ jsx(
726
+ "div",
727
+ {
728
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
729
+ children: /* @__PURE__ */ jsx(
730
+ Image,
575
731
  {
576
- href: "/personal/savings/high-yield-money-market",
577
- children: "High Yield Money Market"
732
+ src: `https://images.axos.com/o9ov1v03uwqk/6tVncmpCfCXbilZHhFUYJ5/9543b0e7d5cd8df20161e07c126667bf/nav-submenu-borrow.webp`,
733
+ alt: "",
734
+ width: 232,
735
+ height: 232
578
736
  }
579
- ) }),
580
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings/first-savings", children: "First Savings" }) })
581
- ] })
582
- ] }),
583
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
584
- /* @__PURE__ */ jsx(
585
- Image,
586
- {
587
- src: `https://images.axos.com/o9ov1v03uwqk/6HFMuiXSvCndJhrPrt4JYk/0a8b9411818a8116943487f946867fe7/nav-submenu-cds-icon.svg`,
588
- alt: "",
589
- width: 20,
590
- height: 20
591
- }
592
- ),
593
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `/personal/cds`, role: "heading", children: "Certificates of Deposit" }) }) })
594
- ] }),
595
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
596
- /* @__PURE__ */ jsx(
597
- Image,
598
- {
599
- src: `https://images.axos.com/o9ov1v03uwqk/2zmsYM7kjm1WgbDkir7c3/16313ad773ff08a2d9bfa61ba161a528/nav-submenu-premier-icon.svg`,
600
- alt: "",
601
- width: 20,
602
- height: 20
603
- }
604
- ),
605
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
606
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier", role: "heading", children: "Premier" }) }),
607
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier/privateclient", children: "Private Client" }) }),
608
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier/insureguardplus", children: "InsureGuard+" }) }),
609
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
737
+ )
738
+ }
739
+ ),
740
+ /* @__PURE__ */ jsx(
741
+ "div",
742
+ {
743
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
744
+ children: /* @__PURE__ */ jsx(
610
745
  Link,
611
746
  {
612
- href: "/personal/premier/worldcheckingandsavings",
613
- children: "World Checking & Savings"
747
+ href: `/personal/mortgages`,
748
+ "aria-label": "get a mortgage quote",
749
+ className: "text_center bg_white ",
750
+ children: "Get a Quote"
614
751
  }
615
- ) })
616
- ] })
617
- ] }),
618
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
619
- /* @__PURE__ */ jsx(
620
- Image,
621
- {
622
- src: `https://images.axos.com/o9ov1v03uwqk/5JqDuUm6D5hbX2MQrbWCQq/0c6b5ed3d5e08cd03e2ca20b8e2f39ef/nav-submenu-atm-icon.svg`,
623
- alt: "",
624
- width: 20,
625
- height: 20
626
- }
627
- ),
628
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `/atm-locator`, role: "heading", children: "ATM Locator" }) }) })
629
- ] }),
630
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
631
- /* @__PURE__ */ jsx(
632
- Image,
633
- {
634
- src: `https://images.axos.com/o9ov1v03uwqk/6ninSDVeSycXICNX8zF4J3/75ccf4194f0b3e7209f4095457bce00d/nav-submenu-raf-icon.svg`,
635
- alt: "",
636
- width: 20,
637
- height: 20
638
- }
639
- ),
640
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/refer-a-friend", role: "heading", children: "Refer-a-Friend" }) }) })
641
- ] })
642
- ] })
643
- ]
644
- }
645
- )
646
- ] }) })
647
- }
648
- ),
649
- hoveredLink === "borrow" && /* @__PURE__ */ jsx(
650
- "div",
651
- {
652
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
653
- role: "menu",
654
- onMouseLeave: handleMouseLeave,
655
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
656
- /* @__PURE__ */ jsxs(
657
- "div",
658
- {
659
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
660
- children: [
661
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
662
- /* @__PURE__ */ jsxs("p", { role: "heading", children: [
663
- "$0 Lender Fee",
664
- /* @__PURE__ */ jsx("sup", { children: "1" }),
665
- " on Home Loans"
666
- ] }),
667
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Our best offer ever on home loans. Don't miss this limited time offer!" })
668
- ] }),
669
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
670
- Image,
671
- {
672
- src: `https://images.axos.com/o9ov1v03uwqk/6tVncmpCfCXbilZHhFUYJ5/9543b0e7d5cd8df20161e07c126667bf/nav-submenu-borrow.webp`,
673
- alt: "",
674
- width: 232,
675
- height: 232
676
- }
677
- ) }),
678
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
679
- Link,
680
- {
681
- href: `/personal/mortgages`,
682
- "aria-label": "get a mortgage quote",
683
- className: "text_center bg_white ",
684
- children: "Get a Quote"
685
- }
686
- ) })
687
- ]
688
- }
689
- ),
690
- /* @__PURE__ */ jsxs(
691
- "div",
692
- {
693
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
694
- children: [
695
- /* @__PURE__ */ jsxs(
696
- "div",
697
- {
698
- className: `${styles.headline} flex_row middle between`,
699
- children: [
700
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Great rates on home loans" }),
701
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
702
- /* @__PURE__ */ jsx(
703
- Image,
752
+ )
753
+ }
754
+ )
755
+ ]
756
+ }
757
+ ),
758
+ /* @__PURE__ */ jsxs(
759
+ "div",
760
+ {
761
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
762
+ children: [
763
+ /* @__PURE__ */ jsxs(
764
+ "div",
765
+ {
766
+ className: `${styles.headline} flex_row middle between`,
767
+ children: [
768
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Great rates on home loans" }),
769
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
770
+ /* @__PURE__ */ jsx(
771
+ Image,
772
+ {
773
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
774
+ alt: "",
775
+ width: 20,
776
+ height: 20
777
+ }
778
+ ),
779
+ /* @__PURE__ */ jsx(
780
+ "div",
781
+ {
782
+ className: `${styles.headline_cta} ${styles.ml_8}`,
783
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
784
+ }
785
+ )
786
+ ] })
787
+ ]
788
+ }
789
+ ),
790
+ /* @__PURE__ */ jsx("hr", {}),
791
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
792
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
793
+ /* @__PURE__ */ jsx(
794
+ Image,
795
+ {
796
+ src: `https://images.axos.com/o9ov1v03uwqk/4DCrulmnArCq5AeiHLUNg9/210d1bd6d08d15d9999494ea027ba4fd/nav-submenu-mortgage-icon.webp`,
797
+ alt: "",
798
+ width: 20,
799
+ height: 20
800
+ }
801
+ ),
802
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
803
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
804
+ Link,
704
805
  {
705
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
706
- alt: "",
707
- width: 20,
708
- height: 20
806
+ href: "/personal/mortgages",
807
+ role: "heading",
808
+ children: "Mortgage"
709
809
  }
710
- ),
711
- /* @__PURE__ */ jsx(
712
- "div",
810
+ ) }),
811
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
812
+ Link,
713
813
  {
714
- className: `${styles.headline_cta} ${styles.ml_8}`,
715
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
814
+ href: "/personal/mortgages/buying-a-home",
815
+ children: "Mortgage Refinance"
716
816
  }
717
- )
817
+ ) }),
818
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/refinance", children: "Mortgage Refinance" }) }),
819
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
820
+ Link,
821
+ {
822
+ href: "/personal/mortgages/buying-a-home/get-pre-qualifies",
823
+ children: "Get Pre-qualified"
824
+ }
825
+ ) }),
826
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages", children: "Get a Rate Quote" }) }),
827
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
828
+ Link,
829
+ {
830
+ href: `https://afp.axosbank.com/blend?type=signUp&createApplication=true`,
831
+ children: "Apply Now"
832
+ }
833
+ ) }),
834
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
835
+ Link,
836
+ {
837
+ href: "/personal/mortgages/mortgage-options",
838
+ children: "Mortgage Options"
839
+ }
840
+ ) }),
841
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
842
+ Link,
843
+ {
844
+ href: "/personal/mortgages/mortgage-support",
845
+ children: "Mortgage Services"
846
+ }
847
+ ) }),
848
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
849
+ Link,
850
+ {
851
+ href: "/customer-Support/personal-support/manage-my-loan",
852
+ children: "Make a Payment"
853
+ }
854
+ ) }),
855
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/rate-watch", children: "Rate Watch" }) })
718
856
  ] })
719
- ]
720
- }
721
- ),
722
- /* @__PURE__ */ jsx("hr", {}),
723
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
724
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
725
- /* @__PURE__ */ jsx(
726
- Image,
727
- {
728
- src: `https://images.axos.com/o9ov1v03uwqk/4DCrulmnArCq5AeiHLUNg9/210d1bd6d08d15d9999494ea027ba4fd/nav-submenu-mortgage-icon.webp`,
729
- alt: "",
730
- width: 20,
731
- height: 20
732
- }
733
- ),
734
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
735
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages", role: "heading", children: "Mortgage" }) }),
736
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/buying-a-home", children: "Mortgage Refinance" }) }),
737
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/refinance", children: "Mortgage Refinance" }) }),
738
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
739
- Link,
857
+ ] }),
858
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
859
+ /* @__PURE__ */ jsx(
860
+ Image,
861
+ {
862
+ src: `https://images.axos.com/o9ov1v03uwqk/1P3FqllFkxleBe4qGVpcJD/7cfbf9d5aaeaf0b87c70f7438de9119a/nav-submenu-personalloans-icon.webp`,
863
+ alt: "",
864
+ width: 20,
865
+ height: 20
866
+ }
867
+ ),
868
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
869
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
870
+ Link,
871
+ {
872
+ href: "/personal/personal-loans",
873
+ role: "heading",
874
+ children: "Personal Loans"
875
+ }
876
+ ) }),
877
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/personal-loans", children: "Learn More" }) }),
878
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
879
+ Link,
880
+ {
881
+ href: `https://personalloans.axosbank.com/`,
882
+ children: "Apply Now"
883
+ }
884
+ ) }),
885
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
886
+ Link,
887
+ {
888
+ href: "/customer-support/personal-support/manage-my-loan",
889
+ children: "Make a Payment"
890
+ }
891
+ ) }),
892
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
893
+ Link,
894
+ {
895
+ href: "/personal/personal-loans/debt-consolidation-loans",
896
+ children: "Debt Consolidation Loans"
897
+ }
898
+ ) }),
899
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
900
+ Link,
901
+ {
902
+ href: "/personal/personal-loans/home-improvement-loans",
903
+ children: "Home Improvement Loans"
904
+ }
905
+ ) }),
906
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
907
+ Link,
908
+ {
909
+ href: "/personal/personal-loans/major-purchases-loans",
910
+ children: "Major Purchases Loans"
911
+ }
912
+ ) })
913
+ ] })
914
+ ] }),
915
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
916
+ /* @__PURE__ */ jsx(
917
+ Image,
918
+ {
919
+ src: `https://images.axos.com/o9ov1v03uwqk/jpqd1KnknpG6gVaYg04Bl/a55d179434815dc4029ee413d8d7a703/nav-submenu-auto-icon.webp`,
920
+ alt: "",
921
+ width: 20,
922
+ height: 20
923
+ }
924
+ ),
925
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
926
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
927
+ Link,
928
+ {
929
+ href: "/personal/auto-loan",
930
+ role: "heading",
931
+ children: "Auto Loans"
932
+ }
933
+ ) }),
934
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
935
+ Link,
936
+ {
937
+ href: "/personal/auto-loan/purchase-a-vehicle",
938
+ children: "Auto Purchase Loans"
939
+ }
940
+ ) }),
941
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/auto-loan/refincance", children: "Auto Refinance Loans" }) }),
942
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
943
+ Link,
944
+ {
945
+ href: "/tools/calculators/auto-loan-calculator",
946
+ children: "Auto Payment Calculator"
947
+ }
948
+ ) }),
949
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
950
+ Link,
951
+ {
952
+ href: "/customer-support/personal-support/manage-my-loan",
953
+ children: "Manage My Loan"
954
+ }
955
+ ) })
956
+ ] })
957
+ ] }),
958
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
959
+ /* @__PURE__ */ jsx(
960
+ Image,
961
+ {
962
+ src: `https://images.axos.com/o9ov1v03uwqk/4PzOJa1zI8qoTiFwQZHywH/3b135a2bb9f281633d2d9f8035dff6e3/nav-submenu-marine-icon.svg`,
963
+ alt: "",
964
+ width: 20,
965
+ height: 20
966
+ }
967
+ ),
968
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
969
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
970
+ Link,
971
+ {
972
+ href: `https://lavictoirefinance.com`,
973
+ role: "heading",
974
+ children: "New! Marine Loans"
975
+ }
976
+ ) }),
977
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `https://lavictoirefinance.com`, children: "Find The Right Loan" }) }),
978
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
979
+ Link,
980
+ {
981
+ href: `https://lavictoirefinance.com/apply-now`,
982
+ children: "Apply Now"
983
+ }
984
+ ) }),
985
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
986
+ Link,
987
+ {
988
+ href: `https://lavictoirefinance.com/contact-us`,
989
+ children: "Contact Us"
990
+ }
991
+ ) })
992
+ ] })
993
+ ] })
994
+ ] })
995
+ ]
996
+ }
997
+ )
998
+ ] }) })
999
+ }
1000
+ ),
1001
+ hoveredLink === "invest" && /* @__PURE__ */ jsx(
1002
+ "div",
1003
+ {
1004
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1005
+ role: "menu",
1006
+ onMouseLeave: handleMouseLeave,
1007
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1008
+ /* @__PURE__ */ jsxs(
1009
+ "div",
1010
+ {
1011
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1012
+ children: [
1013
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1014
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Introducing Axos FundFinder+" }),
1015
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Welcome to your all-in-one research tool. Quickly discover, research, and compare mutual funds and ETFs – just like the pros." })
1016
+ ] }),
1017
+ /* @__PURE__ */ jsx(
1018
+ "div",
1019
+ {
1020
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
1021
+ children: /* @__PURE__ */ jsx(
1022
+ Image,
740
1023
  {
741
- href: "/personal/mortgages/buying-a-home/get-pre-qualifies",
742
- children: "Get Pre-qualified"
1024
+ src: `https://images.axos.com/o9ov1v03uwqk/2bREH0KGxe7C82N4cdathQ/27a2cc310ac12b074241cae88076958d/nav-submenu-invest.webp`,
1025
+ alt: "",
1026
+ width: 232,
1027
+ height: 232
743
1028
  }
744
- ) }),
745
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages", children: "Get a Rate Quote" }) }),
746
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1029
+ )
1030
+ }
1031
+ ),
1032
+ /* @__PURE__ */ jsx(
1033
+ "div",
1034
+ {
1035
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
1036
+ children: /* @__PURE__ */ jsx(
747
1037
  Link,
748
1038
  {
749
- href: `https://afp.axosbank.com/blend?type=signUp&createApplication=true`,
750
- children: "Apply Now"
1039
+ href: `https://axosfundfinder.com/`,
1040
+ "aria-label": "learn more about fundfinder",
1041
+ className: "text_center bg_white ",
1042
+ children: "Learn More"
751
1043
  }
752
- ) }),
753
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/mortgage-options", children: "Mortgage Options" }) }),
754
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/mortgage-support", children: "Mortgage Services" }) }),
755
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
756
- Link,
1044
+ )
1045
+ }
1046
+ )
1047
+ ]
1048
+ }
1049
+ ),
1050
+ /* @__PURE__ */ jsxs(
1051
+ "div",
1052
+ {
1053
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1054
+ children: [
1055
+ /* @__PURE__ */ jsxs(
1056
+ "div",
1057
+ {
1058
+ className: `${styles.headline} flex_row middle between`,
1059
+ children: [
1060
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Quickly discover and compare mutual funds and ETFs" }),
1061
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1062
+ /* @__PURE__ */ jsx(
1063
+ Image,
1064
+ {
1065
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1066
+ alt: "",
1067
+ width: 20,
1068
+ height: 20
1069
+ }
1070
+ ),
1071
+ /* @__PURE__ */ jsx(
1072
+ "div",
1073
+ {
1074
+ className: `${styles.headline_cta} ${styles.ml_8}`,
1075
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1076
+ }
1077
+ )
1078
+ ] })
1079
+ ]
1080
+ }
1081
+ ),
1082
+ /* @__PURE__ */ jsx("hr", {}),
1083
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1084
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1085
+ /* @__PURE__ */ jsx(
1086
+ Image,
1087
+ {
1088
+ src: `https://images.axos.com/o9ov1v03uwqk/1plPiU22JsVdZW6B6XkBi9/14d55691945fba0ba77a7433c6dae988/nav-submenu-mp-icon.svg`,
1089
+ alt: "",
1090
+ width: 20,
1091
+ height: 20
1092
+ }
1093
+ ),
1094
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1095
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1096
+ Link,
1097
+ {
1098
+ href: findMoreAxosDomains(
1099
+ "{AXOS}/invest/managed-portfolios"
1100
+ ),
1101
+ role: "heading",
1102
+ children: "Managed Portfolios"
1103
+ }
1104
+ ) }),
1105
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1106
+ Link,
1107
+ {
1108
+ href: findMoreAxosDomains(
1109
+ "{AXOS}/invest/managed-portfolios/investing-details"
1110
+ ),
1111
+ children: "Investing Details"
1112
+ }
1113
+ ) }),
1114
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1115
+ Link,
1116
+ {
1117
+ href: findMoreAxosDomains(
1118
+ "{AXOS}/invest/managed-portfolios/investment-strategy"
1119
+ ),
1120
+ children: "Investment Strategy"
1121
+ }
1122
+ ) }),
1123
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1124
+ Link,
1125
+ {
1126
+ href: findMoreAxosDomains(
1127
+ "{AXOS}/invest/managed-portfolios/investing-features"
1128
+ ),
1129
+ children: "Investing Features"
1130
+ }
1131
+ ) })
1132
+ ] })
1133
+ ] }),
1134
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1135
+ /* @__PURE__ */ jsx(
1136
+ Image,
1137
+ {
1138
+ src: `https://images.axos.com/o9ov1v03uwqk/AZigMaq83kcvUG8bUGsDz/c3dc8ae0e3020b4c39dd64af9f693b9a/nav-submenu-sdt-icon.webp`,
1139
+ alt: "",
1140
+ width: 20,
1141
+ height: 20
1142
+ }
1143
+ ),
1144
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1145
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1146
+ Link,
1147
+ {
1148
+ href: findMoreAxosDomains(
1149
+ "{AXOS}/invest/self-directed-trading"
1150
+ ),
1151
+ role: "heading",
1152
+ children: "Self Directed Trading"
1153
+ }
1154
+ ) }),
1155
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1156
+ Link,
1157
+ {
1158
+ href: findMoreAxosDomains(
1159
+ "{AXOS}/invest/self-directed-trading/axos-elite-investing"
1160
+ ),
1161
+ children: "Axos Elite Investing"
1162
+ }
1163
+ ) }),
1164
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1165
+ Link,
1166
+ {
1167
+ href: findMoreAxosDomains(
1168
+ "{AXOS}/invest/self-directed-trading/commission-free-stocks-and-etfs"
1169
+ ),
1170
+ children: "Stocks & ETFs"
1171
+ }
1172
+ ) }),
1173
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1174
+ Link,
1175
+ {
1176
+ href: findMoreAxosDomains(
1177
+ "{AXOS}/invest/self-directed-trading/margin-trading"
1178
+ ),
1179
+ children: "Margin Tradings"
1180
+ }
1181
+ ) }),
1182
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1183
+ Link,
1184
+ {
1185
+ href: findMoreAxosDomains(
1186
+ "{AXOS}/invest/self-directed-trading/options-trading"
1187
+ ),
1188
+ children: "Options Trading"
1189
+ }
1190
+ ) })
1191
+ ] })
1192
+ ] }),
1193
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1194
+ /* @__PURE__ */ jsx(
1195
+ Image,
757
1196
  {
758
- href: "/customer-Support/personal-support/manage-my-loan",
759
- children: "Make a Payment"
1197
+ src: `https://images.axos.com/o9ov1v03uwqk/1enbU0rQRzTsm4mVsSNaso/1cd6f813063d71515a09ee338250215a/nav-submenu-retirement-icon.svg`,
1198
+ alt: "",
1199
+ width: 20,
1200
+ height: 20
760
1201
  }
761
- ) }),
762
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/rate-watch", children: "Rate Watch" }) })
763
- ] })
764
- ] }),
765
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
766
- /* @__PURE__ */ jsx(
767
- Image,
768
- {
769
- src: `https://images.axos.com/o9ov1v03uwqk/1P3FqllFkxleBe4qGVpcJD/7cfbf9d5aaeaf0b87c70f7438de9119a/nav-submenu-personalloans-icon.webp`,
770
- alt: "",
771
- width: 20,
772
- height: 20
773
- }
774
- ),
775
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
776
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1202
+ ),
1203
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
777
1204
  Link,
778
1205
  {
779
- href: "/personal/personal-loans",
1206
+ href: findMoreAxosDomains(
1207
+ "{AXOS}/invest/retirement"
1208
+ ),
780
1209
  role: "heading",
781
- children: "Personal Loans"
1210
+ children: "Retirement"
782
1211
  }
783
- ) }),
784
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/personal-loans", children: "Learn More" }) }),
785
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `https://personalloans.axosbank.com/`, children: "Apply Now" }) }),
786
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
787
- Link,
1212
+ ) }) })
1213
+ ] }),
1214
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1215
+ /* @__PURE__ */ jsx(
1216
+ Image,
788
1217
  {
789
- href: "/customer-support/personal-support/manage-my-loan",
790
- children: "Make a Payment"
1218
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1219
+ alt: "",
1220
+ width: 20,
1221
+ height: 20
791
1222
  }
792
- ) }),
793
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1223
+ ),
1224
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
794
1225
  Link,
795
1226
  {
796
- href: "/personal/personal-loans/debt-consolidation-loans",
797
- children: "Debt Consolidation Loans"
1227
+ href: findMoreAxosDomains(
1228
+ "{AXOS}/invest/support"
1229
+ ),
1230
+ role: "heading",
1231
+ children: "Support"
798
1232
  }
799
- ) }),
800
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
801
- Link,
1233
+ ) }) })
1234
+ ] }),
1235
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1236
+ /* @__PURE__ */ jsx(
1237
+ Image,
802
1238
  {
803
- href: "/personal/personal-loans/home-improvement-loans",
804
- children: "Home Improvement Loans"
1239
+ src: `https://images.axos.com/o9ov1v03uwqk/PvF22fgpIH1qP5swSt3MH/daf9fd3df98bc23ed6da9a51eaa37448/nav-submenu-blog-icon.svg`,
1240
+ alt: "",
1241
+ width: 20,
1242
+ height: 20
805
1243
  }
806
- ) }),
807
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1244
+ ),
1245
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
808
1246
  Link,
809
1247
  {
810
- href: "/personal/personal-loans/major-purchases-loans",
811
- children: "Major Purchases Loans"
1248
+ href: findMoreAxosDomains(
1249
+ "{AXOS}/invest/blog"
1250
+ ),
1251
+ role: "heading",
1252
+ children: "Blog"
812
1253
  }
813
- ) })
1254
+ ) }) })
814
1255
  ] })
1256
+ ] })
1257
+ ]
1258
+ }
1259
+ )
1260
+ ] }) })
1261
+ }
1262
+ ),
1263
+ hoveredLink === "plan" && /* @__PURE__ */ jsx(
1264
+ "div",
1265
+ {
1266
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1267
+ role: "menu",
1268
+ onMouseLeave: handleMouseLeave,
1269
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1270
+ /* @__PURE__ */ jsxs(
1271
+ "div",
1272
+ {
1273
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1274
+ children: [
1275
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1276
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "All your finances. In one place." }),
1277
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Get the Axos All-In-One Mobile App and gain the insights you need to plan your next move. No Axos account required!" })
815
1278
  ] }),
816
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
817
- /* @__PURE__ */ jsx(
818
- Image,
819
- {
820
- src: `https://images.axos.com/o9ov1v03uwqk/jpqd1KnknpG6gVaYg04Bl/a55d179434815dc4029ee413d8d7a703/nav-submenu-auto-icon.webp`,
821
- alt: "",
822
- width: 20,
823
- height: 20
824
- }
825
- ),
826
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
827
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/auto-loan", role: "heading", children: "Auto Loans" }) }),
828
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
829
- Link,
830
- {
831
- href: "/personal/auto-loan/purchase-a-vehicle",
832
- children: "Auto Purchase Loans"
833
- }
834
- ) }),
835
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/auto-loan/refincance", children: "Auto Refinance Loans" }) }),
836
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
837
- Link,
838
- {
839
- href: "/tools/calculators/auto-loan-calculator",
840
- children: "Auto Payment Calculator"
841
- }
842
- ) }),
843
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
844
- Link,
845
- {
846
- href: "/customer-support/personal-support/manage-my-loan",
847
- children: "Manage My Loan"
848
- }
849
- ) })
850
- ] })
851
- ] }),
852
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
853
- /* @__PURE__ */ jsx(
854
- Image,
855
- {
856
- src: `https://images.axos.com/o9ov1v03uwqk/4PzOJa1zI8qoTiFwQZHywH/3b135a2bb9f281633d2d9f8035dff6e3/nav-submenu-marine-icon.svg`,
857
- alt: "",
858
- width: 20,
859
- height: 20
860
- }
861
- ),
862
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
863
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
864
- Link,
865
- {
866
- href: `https://lavictoirefinance.com`,
867
- role: "heading",
868
- children: "New! Marine Loans"
869
- }
870
- ) }),
871
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `https://lavictoirefinance.com`, children: "Find The Right Loan" }) }),
872
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
873
- Link,
1279
+ /* @__PURE__ */ jsx(
1280
+ "div",
1281
+ {
1282
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
1283
+ children: /* @__PURE__ */ jsx(
1284
+ Image,
874
1285
  {
875
- href: `https://lavictoirefinance.com/apply-now`,
876
- children: "Apply Now"
1286
+ src: `https://images.axos.com/o9ov1v03uwqk/4vSUrmXEbK80FeuAfe2fqJ/c79ef545cef6a995bd9d56ba417bf7ab/nav-submenu-plan.webp`,
1287
+ alt: "",
1288
+ width: 232,
1289
+ height: 232
877
1290
  }
878
- ) }),
879
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1291
+ )
1292
+ }
1293
+ ),
1294
+ /* @__PURE__ */ jsx(
1295
+ "div",
1296
+ {
1297
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
1298
+ children: /* @__PURE__ */ jsx(
880
1299
  Link,
881
1300
  {
882
- href: `https://lavictoirefinance.com/contact-us`,
883
- children: "Contact Us"
1301
+ href: `/tools/payment-apps/mobile-app`,
1302
+ "aria-label": "download the mobile app",
1303
+ className: "text_center bg_white ",
1304
+ children: "Get the App"
884
1305
  }
885
- ) })
886
- ] })
887
- ] })
888
- ] })
889
- ]
890
- }
891
- )
892
- ] }) })
893
- }
894
- ),
895
- hoveredLink === "invest" && /* @__PURE__ */ jsx(
896
- "div",
897
- {
898
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
899
- role: "menu",
900
- onMouseLeave: handleMouseLeave,
901
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
902
- /* @__PURE__ */ jsxs(
903
- "div",
904
- {
905
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
906
- children: [
907
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
908
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Introducing Axos FundFinder+" }),
909
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Welcome to your all-in-one research tool. Quickly discover, research, and compare mutual funds and ETFs – just like the pros." })
910
- ] }),
911
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
912
- Image,
913
- {
914
- src: `https://images.axos.com/o9ov1v03uwqk/2bREH0KGxe7C82N4cdathQ/27a2cc310ac12b074241cae88076958d/nav-submenu-invest.webp`,
915
- alt: "",
916
- width: 232,
917
- height: 232
918
- }
919
- ) }),
920
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
921
- Link,
922
- {
923
- href: `https://axosfundfinder.com/`,
924
- "aria-label": "learn more about fundfinder",
925
- className: "text_center bg_white ",
926
- children: "Learn More"
927
- }
928
- ) })
929
- ]
930
- }
931
- ),
932
- /* @__PURE__ */ jsxs(
933
- "div",
934
- {
935
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
936
- children: [
937
- /* @__PURE__ */ jsxs(
938
- "div",
939
- {
940
- className: `${styles.headline} flex_row middle between`,
941
- children: [
942
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Quickly discover and compare mutual funds and ETFs" }),
943
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
944
- /* @__PURE__ */ jsx(
945
- Image,
946
- {
947
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
948
- alt: "",
949
- width: 20,
950
- height: 20
951
- }
952
- ),
953
- /* @__PURE__ */ jsx(
954
- "div",
1306
+ )
1307
+ }
1308
+ )
1309
+ ]
1310
+ }
1311
+ ),
1312
+ /* @__PURE__ */ jsxs(
1313
+ "div",
1314
+ {
1315
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1316
+ children: [
1317
+ /* @__PURE__ */ jsxs(
1318
+ "div",
1319
+ {
1320
+ className: `${styles.headline} flex_row middle between`,
1321
+ children: [
1322
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Plan your next move" }),
1323
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1324
+ /* @__PURE__ */ jsx(
1325
+ Image,
1326
+ {
1327
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1328
+ alt: "",
1329
+ width: 20,
1330
+ height: 20
1331
+ }
1332
+ ),
1333
+ /* @__PURE__ */ jsx(
1334
+ "div",
1335
+ {
1336
+ className: `${styles.headline_cta} ${styles.ml_8}`,
1337
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1338
+ }
1339
+ )
1340
+ ] })
1341
+ ]
1342
+ }
1343
+ ),
1344
+ /* @__PURE__ */ jsx("hr", {}),
1345
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1346
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1347
+ /* @__PURE__ */ jsx(
1348
+ Image,
1349
+ {
1350
+ src: `https://images.axos.com/o9ov1v03uwqk/3bY5vS0jWKu5FYx3wYjhc5/1be7a91da244ae54796ea8191c07150b/nav-submenu-app-icon.webp`,
1351
+ alt: "",
1352
+ width: 20,
1353
+ height: 20
1354
+ }
1355
+ ),
1356
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1357
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1358
+ Link,
955
1359
  {
956
- className: `${styles.headline_cta} ${styles.ml_8}`,
957
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1360
+ href: "/tools/payment-apps/mobile-app",
1361
+ role: "heading",
1362
+ children: "Axos Mobile App"
958
1363
  }
959
- )
1364
+ ) }),
1365
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Download the App" }) }),
1366
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Mobile App Features" }) })
960
1367
  ] })
961
- ]
962
- }
963
- ),
964
- /* @__PURE__ */ jsx("hr", {}),
965
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
966
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
967
- /* @__PURE__ */ jsx(
968
- Image,
969
- {
970
- src: `https://images.axos.com/o9ov1v03uwqk/1plPiU22JsVdZW6B6XkBi9/14d55691945fba0ba77a7433c6dae988/nav-submenu-mp-icon.svg`,
971
- alt: "",
972
- width: 20,
973
- height: 20
974
- }
975
- ),
976
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
977
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
978
- Link,
979
- {
980
- href: findMoreAxosDomains(
981
- "{AXOS}/invest/managed-portfolios"
982
- ),
983
- role: "heading",
984
- children: "Managed Portfolios"
985
- }
986
- ) }),
987
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
988
- Link,
989
- {
990
- href: findMoreAxosDomains(
991
- "{AXOS}/invest/managed-portfolios/investing-details"
992
- ),
993
- children: "Investing Details"
994
- }
995
- ) }),
996
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
997
- Link,
998
- {
999
- href: findMoreAxosDomains(
1000
- "{AXOS}/invest/managed-portfolios/investment-strategy"
1001
- ),
1002
- children: "Investment Strategy"
1003
- }
1004
- ) }),
1005
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1006
- Link,
1007
- {
1008
- href: findMoreAxosDomains(
1009
- "{AXOS}/invest/managed-portfolios/investing-features"
1010
- ),
1011
- children: "Investing Features"
1012
- }
1013
- ) })
1014
- ] })
1015
- ] }),
1016
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1017
- /* @__PURE__ */ jsx(
1018
- Image,
1019
- {
1020
- src: `https://images.axos.com/o9ov1v03uwqk/AZigMaq83kcvUG8bUGsDz/c3dc8ae0e3020b4c39dd64af9f693b9a/nav-submenu-sdt-icon.webp`,
1021
- alt: "",
1022
- width: 20,
1023
- height: 20
1024
- }
1025
- ),
1026
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1027
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1028
- Link,
1029
- {
1030
- href: findMoreAxosDomains(
1031
- "{AXOS}/invest/self-directed-trading"
1032
- ),
1033
- role: "heading",
1034
- children: "Self Directed Trading"
1035
- }
1036
- ) }),
1037
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1038
- Link,
1039
- {
1040
- href: findMoreAxosDomains(
1041
- "{AXOS}/invest/self-directed-trading/axos-elite-investing"
1042
- ),
1043
- children: "Axos Elite Investing"
1044
- }
1045
- ) }),
1046
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1047
- Link,
1048
- {
1049
- href: findMoreAxosDomains(
1050
- "{AXOS}/invest/self-directed-trading/commission-free-stocks-and-etfs"
1051
- ),
1052
- children: "Stocks & ETFs"
1053
- }
1054
- ) }),
1055
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1056
- Link,
1057
- {
1058
- href: findMoreAxosDomains(
1059
- "{AXOS}/invest/self-directed-trading/margin-trading"
1060
- ),
1061
- children: "Margin Tradings"
1062
- }
1063
- ) }),
1064
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1065
- Link,
1066
- {
1067
- href: findMoreAxosDomains(
1068
- "{AXOS}/invest/self-directed-trading/options-trading"
1069
- ),
1070
- children: "Options Trading"
1071
- }
1072
- ) })
1073
- ] })
1074
- ] }),
1075
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1076
- /* @__PURE__ */ jsx(
1077
- Image,
1078
- {
1079
- src: `https://images.axos.com/o9ov1v03uwqk/1enbU0rQRzTsm4mVsSNaso/1cd6f813063d71515a09ee338250215a/nav-submenu-retirement-icon.svg`,
1080
- alt: "",
1081
- width: 20,
1082
- height: 20
1083
- }
1084
- ),
1085
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1086
- Link,
1087
- {
1088
- href: findMoreAxosDomains(
1089
- "{AXOS}/invest/retirement"
1090
- ),
1091
- role: "heading",
1092
- children: "Retirement"
1093
- }
1094
- ) }) })
1095
- ] }),
1096
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1097
- /* @__PURE__ */ jsx(
1098
- Image,
1099
- {
1100
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1101
- alt: "",
1102
- width: 20,
1103
- height: 20
1104
- }
1105
- ),
1106
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1107
- Link,
1108
- {
1109
- href: findMoreAxosDomains(
1110
- "{AXOS}/invest/support"
1111
- ),
1112
- role: "heading",
1113
- children: "Support"
1114
- }
1115
- ) }) })
1116
- ] }),
1117
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1118
- /* @__PURE__ */ jsx(
1119
- Image,
1120
- {
1121
- src: `https://images.axos.com/o9ov1v03uwqk/PvF22fgpIH1qP5swSt3MH/daf9fd3df98bc23ed6da9a51eaa37448/nav-submenu-blog-icon.svg`,
1122
- alt: "",
1123
- width: 20,
1124
- height: 20
1125
- }
1126
- ),
1127
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1128
- Link,
1129
- {
1130
- href: findMoreAxosDomains("{AXOS}/invest/blog"),
1131
- role: "heading",
1132
- children: "Blog"
1133
- }
1134
- ) }) })
1135
- ] })
1136
- ] })
1137
- ]
1138
- }
1139
- )
1140
- ] }) })
1141
- }
1142
- ),
1143
- hoveredLink === "plan" && /* @__PURE__ */ jsx(
1144
- "div",
1145
- {
1146
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1147
- role: "menu",
1148
- onMouseLeave: handleMouseLeave,
1149
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1150
- /* @__PURE__ */ jsxs(
1151
- "div",
1152
- {
1153
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1154
- children: [
1155
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1156
- /* @__PURE__ */ jsx("p", { role: "heading", children: "All your finances. In one place." }),
1157
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Get the Axos All-In-One Mobile App and gain the insights you need to plan your next move. No Axos account required!" })
1158
- ] }),
1159
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
1160
- Image,
1161
- {
1162
- src: `https://images.axos.com/o9ov1v03uwqk/4vSUrmXEbK80FeuAfe2fqJ/c79ef545cef6a995bd9d56ba417bf7ab/nav-submenu-plan.webp`,
1163
- alt: "",
1164
- width: 232,
1165
- height: 232
1166
- }
1167
- ) }),
1168
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
1169
- Link,
1170
- {
1171
- href: `/tools/payment-apps/mobile-app`,
1172
- "aria-label": "download the mobile app",
1173
- className: "text_center bg_white ",
1174
- children: "Get the App"
1175
- }
1176
- ) })
1177
- ]
1178
- }
1179
- ),
1180
- /* @__PURE__ */ jsxs(
1181
- "div",
1182
- {
1183
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1184
- children: [
1185
- /* @__PURE__ */ jsxs(
1186
- "div",
1187
- {
1188
- className: `${styles.headline} flex_row middle between`,
1189
- children: [
1190
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Plan your next move" }),
1191
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1192
- /* @__PURE__ */ jsx(
1193
- Image,
1368
+ ] }),
1369
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1370
+ /* @__PURE__ */ jsx(
1371
+ Image,
1372
+ {
1373
+ src: `https://images.axos.com/o9ov1v03uwqk/4Dbx1OIp2ARiyWFC0dOqzg/38540096c180880dbb70176d3b2b1b2b/nav-submenu-tools-icon.webp`,
1374
+ alt: "",
1375
+ width: 20,
1376
+ height: 20
1377
+ }
1378
+ ),
1379
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1380
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", role: "heading", children: "Financial Tools" }) }),
1381
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/calculators", children: "Calculators" }) }),
1382
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/credit-score-monitoring", children: "Credit Score Monitoring" }) }),
1383
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1384
+ Link,
1194
1385
  {
1195
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1196
- alt: "",
1197
- width: 20,
1198
- height: 20
1386
+ href: "/personal/personal-finance-manager",
1387
+ children: "Personal Finance Manager"
1199
1388
  }
1200
- ),
1201
- /* @__PURE__ */ jsx(
1202
- "div",
1389
+ ) }),
1390
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", children: "Additional Tools" }) })
1391
+ ] })
1392
+ ] }),
1393
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1394
+ /* @__PURE__ */ jsx(
1395
+ Image,
1396
+ {
1397
+ src: `https://images.axos.com/o9ov1v03uwqk/6qP12OCpyBQWIFQHpJBcOc/aa91d77692692608517c43274dae8e19/nav-submenu-insights-icon.webp`,
1398
+ alt: "",
1399
+ width: 20,
1400
+ height: 20
1401
+ }
1402
+ ),
1403
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1404
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", role: "heading", children: "Education & Insights" }) }),
1405
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", children: "Personal Finance" }) }),
1406
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1407
+ Link,
1203
1408
  {
1204
- className: `${styles.headline_cta} ${styles.ml_8}`,
1205
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1409
+ href: findMoreAxosDomains(
1410
+ "{AXOS}/invest/blog"
1411
+ ),
1412
+ children: "Investing Insight"
1206
1413
  }
1207
- )
1414
+ ) }),
1415
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog/categories/podcast", children: "Investing Podcase" }) })
1208
1416
  ] })
1209
- ]
1210
- }
1211
- ),
1212
- /* @__PURE__ */ jsx("hr", {}),
1213
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1214
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1215
- /* @__PURE__ */ jsx(
1216
- Image,
1217
- {
1218
- src: `https://images.axos.com/o9ov1v03uwqk/3bY5vS0jWKu5FYx3wYjhc5/1be7a91da244ae54796ea8191c07150b/nav-submenu-app-icon.webp`,
1219
- alt: "",
1220
- width: 20,
1221
- height: 20
1222
- }
1223
- ),
1224
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1225
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1226
- Link,
1227
- {
1228
- href: "/tools/payment-apps/mobile-app",
1229
- role: "heading",
1230
- children: "Axos Mobile App"
1231
- }
1232
- ) }),
1233
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Download the App" }) }),
1234
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Mobile App Features" }) })
1235
1417
  ] })
1236
- ] }),
1237
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1238
- /* @__PURE__ */ jsx(
1239
- Image,
1240
- {
1241
- src: `https://images.axos.com/o9ov1v03uwqk/4Dbx1OIp2ARiyWFC0dOqzg/38540096c180880dbb70176d3b2b1b2b/nav-submenu-tools-icon.webp`,
1242
- alt: "",
1243
- width: 20,
1244
- height: 20
1245
- }
1246
- ),
1247
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1248
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", role: "heading", children: "Financial Tools" }) }),
1249
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/calculators", children: "Calculators" }) }),
1250
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/credit-score-monitoring", children: "Credit Score Monitoring" }) }),
1251
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/personal-finance-manager", children: "Personal Finance Manager" }) }),
1252
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", children: "Additional Tools" }) })
1418
+ ] })
1419
+ ]
1420
+ }
1421
+ )
1422
+ ] }) })
1423
+ }
1424
+ ),
1425
+ hoveredLink === "sbb" && /* @__PURE__ */ jsx(
1426
+ "div",
1427
+ {
1428
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1429
+ role: "menu",
1430
+ onMouseLeave: handleMouseLeave,
1431
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1432
+ /* @__PURE__ */ jsxs(
1433
+ "div",
1434
+ {
1435
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1436
+ children: [
1437
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1438
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Open a Business Banking Account" }),
1439
+ /* @__PURE__ */ jsxs("p", { className: styles.mt_8, children: [
1440
+ "Designed to move your business forward. Speak to a Relationship Manager at",
1441
+ " ",
1442
+ /* @__PURE__ */ jsx(
1443
+ "a",
1444
+ {
1445
+ href: "tel:844-678-2726",
1446
+ style: { color: "#fff" },
1447
+ children: "844-678-2726"
1448
+ }
1449
+ )
1253
1450
  ] })
1254
1451
  ] }),
1255
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1256
- /* @__PURE__ */ jsx(
1257
- Image,
1258
- {
1259
- src: `https://images.axos.com/o9ov1v03uwqk/6qP12OCpyBQWIFQHpJBcOc/aa91d77692692608517c43274dae8e19/nav-submenu-insights-icon.webp`,
1260
- alt: "",
1261
- width: 20,
1262
- height: 20
1263
- }
1264
- ),
1265
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1266
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", role: "heading", children: "Education & Insights" }) }),
1267
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", children: "Personal Finance" }) }),
1268
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1269
- Link,
1270
- {
1271
- href: findMoreAxosDomains("{AXOS}/invest/blog"),
1272
- children: "Investing Insight"
1273
- }
1274
- ) }),
1275
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog/categories/podcast", children: "Investing Podcase" }) })
1276
- ] })
1277
- ] })
1278
- ] })
1279
- ]
1280
- }
1281
- )
1282
- ] }) })
1283
- }
1284
- ),
1285
- hoveredLink === "sbb" && /* @__PURE__ */ jsx(
1286
- "div",
1287
- {
1288
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1289
- role: "menu",
1290
- onMouseLeave: handleMouseLeave,
1291
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1292
- /* @__PURE__ */ jsxs(
1293
- "div",
1294
- {
1295
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1296
- children: [
1297
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1298
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Open a Business Banking Account" }),
1299
- /* @__PURE__ */ jsxs("p", { className: styles.mt_8, children: [
1300
- "Designed to move your business forward. Speak to a Relationship Manager at",
1301
- " ",
1302
- /* @__PURE__ */ jsx("a", { href: "tel:844-678-2726", style: { color: "#fff" }, children: "844-678-2726" })
1303
- ] })
1304
- ] }),
1305
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
1306
- Image,
1307
- {
1308
- src: `https://images.axos.com/o9ov1v03uwqk/5vHrV4m3DbDQt13GOahbYA/0e463ec0348dd117684629f59f24ea6e/nav-submenu-sbb.png`,
1309
- alt: "",
1310
- width: 232,
1311
- height: 232
1312
- }
1313
- ) }),
1314
- /* @__PURE__ */ jsxs("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: [
1315
1452
  /* @__PURE__ */ jsx(
1316
- Link,
1453
+ "div",
1317
1454
  {
1318
- href: "/business/open-account-return-to-application",
1319
- "aria-label": "open a business account",
1320
- className: "text_center bg_white",
1321
- children: "Open an Account"
1455
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
1456
+ children: /* @__PURE__ */ jsx(
1457
+ Image,
1458
+ {
1459
+ src: `https://images.axos.com/o9ov1v03uwqk/5vHrV4m3DbDQt13GOahbYA/0e463ec0348dd117684629f59f24ea6e/nav-submenu-sbb.png`,
1460
+ alt: "",
1461
+ width: 232,
1462
+ height: 232
1463
+ }
1464
+ )
1322
1465
  }
1323
1466
  ),
1324
- /* @__PURE__ */ jsx(
1325
- Link,
1467
+ /* @__PURE__ */ jsxs(
1468
+ "div",
1326
1469
  {
1327
- href: `https://small-business-accounts.axosbank.com/cu/ViewSubmittedLoans.aspx?enc=Kw21Wblm1yxpjJabdoZaD2oIrfLnqyOPZYLje3IpAHPSPA0rk7uki-4iwxg4EEtcQ8w9BaoruqY2t_I-N_fTuA`,
1328
- children: "Check Application Status"
1329
- }
1330
- )
1331
- ] })
1332
- ]
1333
- }
1334
- ),
1335
- /* @__PURE__ */ jsxs(
1336
- "div",
1337
- {
1338
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1339
- children: [
1340
- /* @__PURE__ */ jsxs(
1341
- "div",
1342
- {
1343
- className: `${styles.headline} flex_row middle between`,
1344
- children: [
1345
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Move your business forward" }),
1346
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1470
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
1471
+ children: [
1347
1472
  /* @__PURE__ */ jsx(
1348
- Image,
1473
+ Link,
1349
1474
  {
1350
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1351
- alt: "",
1352
- width: 20,
1353
- height: 20
1475
+ href: "/business/open-account-return-to-application",
1476
+ "aria-label": "open a business account",
1477
+ className: "text_center bg_white",
1478
+ children: "Open an Account"
1354
1479
  }
1355
1480
  ),
1356
1481
  /* @__PURE__ */ jsx(
1357
- "div",
1482
+ Link,
1358
1483
  {
1359
- className: `${styles.headline_cta} ${styles.ml_8}`,
1360
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1484
+ href: `https://small-business-accounts.axosbank.com/cu/ViewSubmittedLoans.aspx?enc=Kw21Wblm1yxpjJabdoZaD2oIrfLnqyOPZYLje3IpAHPSPA0rk7uki-4iwxg4EEtcQ8w9BaoruqY2t_I-N_fTuA`,
1485
+ children: "Check Application Status"
1361
1486
  }
1362
1487
  )
1488
+ ]
1489
+ }
1490
+ )
1491
+ ]
1492
+ }
1493
+ ),
1494
+ /* @__PURE__ */ jsxs(
1495
+ "div",
1496
+ {
1497
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1498
+ children: [
1499
+ /* @__PURE__ */ jsxs(
1500
+ "div",
1501
+ {
1502
+ className: `${styles.headline} flex_row middle between`,
1503
+ children: [
1504
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Move your business forward" }),
1505
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1506
+ /* @__PURE__ */ jsx(
1507
+ Image,
1508
+ {
1509
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1510
+ alt: "",
1511
+ width: 20,
1512
+ height: 20
1513
+ }
1514
+ ),
1515
+ /* @__PURE__ */ jsx(
1516
+ "div",
1517
+ {
1518
+ className: `${styles.headline_cta} ${styles.ml_8}`,
1519
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1520
+ }
1521
+ )
1522
+ ] })
1523
+ ]
1524
+ }
1525
+ ),
1526
+ /* @__PURE__ */ jsx("hr", {}),
1527
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1528
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1529
+ /* @__PURE__ */ jsx(
1530
+ Image,
1531
+ {
1532
+ src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
1533
+ alt: "",
1534
+ width: 20,
1535
+ height: 20
1536
+ }
1537
+ ),
1538
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1539
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1540
+ Link,
1541
+ {
1542
+ href: "/business/small-business-banking/business-checking-compare",
1543
+ role: "heading",
1544
+ children: "Checking"
1545
+ }
1546
+ ) }),
1547
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1548
+ Link,
1549
+ {
1550
+ href: "/business/small-business-banking/business-checking-compare/basic-business-checking",
1551
+ children: "Basic Business Checking"
1552
+ }
1553
+ ) }),
1554
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1555
+ Link,
1556
+ {
1557
+ href: "/business/small-business-banking/business-checking-compare/business-interest-checking",
1558
+ children: "Business Interest Checking"
1559
+ }
1560
+ ) })
1363
1561
  ] })
1364
- ]
1365
- }
1366
- ),
1367
- /* @__PURE__ */ jsx("hr", {}),
1368
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1369
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1370
- /* @__PURE__ */ jsx(
1371
- Image,
1372
- {
1373
- src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
1374
- alt: "",
1375
- width: 20,
1376
- height: 20
1377
- }
1378
- ),
1379
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1380
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1381
- Link,
1382
- {
1383
- href: "/business/small-business-banking/business-checking-compare",
1384
- role: "heading",
1385
- children: "Checking"
1386
- }
1387
- ) }),
1388
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1389
- Link,
1390
- {
1391
- href: "/business/small-business-banking/business-checking-compare/basic-business-checking",
1392
- children: "Basic Business Checking"
1393
- }
1394
- ) }),
1395
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1396
- Link,
1397
- {
1398
- href: "/business/small-business-banking/business-checking-compare/business-interest-checking",
1399
- children: "Business Interest Checking"
1400
- }
1401
- ) })
1402
- ] })
1403
- ] }),
1404
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1405
- /* @__PURE__ */ jsx(
1406
- Image,
1407
- {
1408
- src: `https://images.axos.com/o9ov1v03uwqk/5ODchMOjrkKa90SBWKwcDw/e5508c26d341bfb58318e052d89f4771/nav-submenu-savings-icon.svg`,
1409
- alt: "",
1410
- width: 20,
1411
- height: 20
1412
- }
1413
- ),
1414
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1415
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1416
- Link,
1417
- {
1418
- href: "/business/small-business-banking/savings",
1419
- role: "heading",
1420
- children: "Savings"
1421
- }
1422
- ) }),
1423
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1424
- Link,
1425
- {
1426
- href: "/business/small-business-banking/savings/business-money-market-accounts/business-money-market",
1427
- children: "Business Money Market"
1428
- }
1429
- ) }),
1430
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1431
- Link,
1432
- {
1433
- href: "/business/small-business-banking/savings/business-savings-accounts/business-premium-saving",
1434
- children: "Business Premium Savings"
1435
- }
1436
- ) }),
1437
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1438
- Link,
1439
- {
1440
- href: "/business/small-business-banking/savings/business-savings-accounts/business-savings",
1441
- children: "Business Savings"
1442
- }
1443
- ) }),
1444
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1445
- Link,
1446
- {
1447
- href: "/business/small-business-banking/savings/business-money-market-accounts/non-profit-money-market",
1448
- children: "Non-Profit Money Market"
1449
- }
1450
- ) }),
1451
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1452
- Link,
1453
- {
1454
- href: "/business/small-business-banking/savings/business-cds",
1455
- children: "Business CDs"
1456
- }
1457
- ) })
1458
- ] })
1459
- ] }),
1460
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1461
- /* @__PURE__ */ jsx(
1462
- Image,
1463
- {
1464
- src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
1465
- alt: "",
1466
- width: 20,
1467
- height: 20
1468
- }
1469
- ),
1470
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1471
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1472
- Link,
1473
- {
1474
- href: "/business/small-business-banking/services",
1475
- role: "heading",
1476
- children: "Services"
1477
- }
1478
- ) }),
1479
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1480
- Link,
1481
- {
1482
- href: "/business/small-business-banking/services/merchant-services",
1483
- children: "Merchant Services"
1484
- }
1485
- ) }),
1486
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1487
- Link,
1488
- {
1489
- href: "/business/small-business-banking/services/payroll-services",
1490
- children: "Payroll Services"
1491
- }
1492
- ) }),
1493
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1494
- Link,
1495
- {
1496
- href: "/business/small-business-banking/services/sba-loans",
1497
- children: "SBA Loans"
1498
- }
1499
- ) }),
1500
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1501
- Link,
1502
- {
1503
- href: "/business/small-business-banking/services/treasury-management",
1504
- children: "Treasury Management"
1505
- }
1506
- ) }),
1507
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1508
- Link,
1509
- {
1510
- href: "/business/small-business-banking/services/insured-cash-sweep",
1511
- children: "Insured Cash Sweep"
1512
- }
1513
- ) })
1514
- ] })
1515
- ] }),
1516
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1517
- /* @__PURE__ */ jsx(
1518
- Image,
1519
- {
1520
- src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
1521
- alt: "",
1522
- width: 20,
1523
- height: 20
1524
- }
1525
- ),
1526
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1527
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1528
- Link,
1529
- {
1530
- href: "/customer-support/business-support",
1531
- role: "heading",
1532
- children: "Other Resources"
1533
- }
1534
- ) }),
1535
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1536
- Link,
1537
- {
1538
- href: "/customer-support/business-support/faq",
1539
- children: "FAQ"
1540
- }
1541
- ) }),
1542
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/business-rates", children: "Rates" }) }),
1543
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/atm-locator", children: "ATM Locator" }) }),
1544
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1545
- Link,
1546
- {
1547
- href: "/tools/calculators/saving-to-start-a-business-calculator",
1548
- children: "Calculators"
1549
- }
1550
- ) })
1551
- ] })
1552
- ] })
1553
- ] })
1554
- ]
1555
- }
1556
- )
1557
- ] }) })
1558
- }
1559
- ),
1560
- hoveredLink === "combank" && /* @__PURE__ */ jsx(
1561
- "div",
1562
- {
1563
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1564
- role: "menu",
1565
- onMouseLeave: handleMouseLeave,
1566
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1567
- /* @__PURE__ */ jsxs(
1568
- "div",
1569
- {
1570
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1571
- children: [
1572
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1573
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Banking" }),
1574
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We customize treasury management solutions to meet the needs of your organization." })
1575
- ] }),
1576
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
1577
- Image,
1578
- {
1579
- src: `https://images.axos.com/o9ov1v03uwqk/7rELrrwmhLt5Bz9KqxLgMM/27a7555956dc516e732a14f78428dbd4/nav-submen-combank.png`,
1580
- alt: "",
1581
- width: 232,
1582
- height: 232
1583
- }
1584
- ) })
1585
- ]
1586
- }
1587
- ),
1588
- /* @__PURE__ */ jsxs(
1589
- "div",
1590
- {
1591
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1592
- children: [
1593
- /* @__PURE__ */ jsxs(
1594
- "div",
1595
- {
1596
- className: `${styles.headline} flex_row middle between`,
1597
- children: [
1598
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Solutions from industry experts" }),
1599
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1600
- /* @__PURE__ */ jsx(
1601
- Image,
1562
+ ] }),
1563
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1564
+ /* @__PURE__ */ jsx(
1565
+ Image,
1566
+ {
1567
+ src: `https://images.axos.com/o9ov1v03uwqk/5ODchMOjrkKa90SBWKwcDw/e5508c26d341bfb58318e052d89f4771/nav-submenu-savings-icon.svg`,
1568
+ alt: "",
1569
+ width: 20,
1570
+ height: 20
1571
+ }
1572
+ ),
1573
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1574
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1575
+ Link,
1602
1576
  {
1603
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1604
- alt: "",
1605
- width: 20,
1606
- height: 20
1577
+ href: "/business/small-business-banking/savings",
1578
+ role: "heading",
1579
+ children: "Savings"
1607
1580
  }
1608
- ),
1609
- /* @__PURE__ */ jsx(
1610
- "div",
1581
+ ) }),
1582
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1583
+ Link,
1611
1584
  {
1612
- className: `${styles.headline_cta} ${styles.ml_8}`,
1613
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1585
+ href: "/business/small-business-banking/savings/business-money-market-accounts/business-money-market",
1586
+ children: "Business Money Market"
1614
1587
  }
1615
- )
1588
+ ) }),
1589
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1590
+ Link,
1591
+ {
1592
+ href: "/business/small-business-banking/savings/business-savings-accounts/business-premium-saving",
1593
+ children: "Business Premium Savings"
1594
+ }
1595
+ ) }),
1596
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1597
+ Link,
1598
+ {
1599
+ href: "/business/small-business-banking/savings/business-savings-accounts/business-savings",
1600
+ children: "Business Savings"
1601
+ }
1602
+ ) }),
1603
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1604
+ Link,
1605
+ {
1606
+ href: "/business/small-business-banking/savings/business-money-market-accounts/non-profit-money-market",
1607
+ children: "Non-Profit Money Market"
1608
+ }
1609
+ ) }),
1610
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1611
+ Link,
1612
+ {
1613
+ href: "/business/small-business-banking/savings/business-cds",
1614
+ children: "Business CDs"
1615
+ }
1616
+ ) })
1617
+ ] })
1618
+ ] }),
1619
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1620
+ /* @__PURE__ */ jsx(
1621
+ Image,
1622
+ {
1623
+ src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
1624
+ alt: "",
1625
+ width: 20,
1626
+ height: 20
1627
+ }
1628
+ ),
1629
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1630
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1631
+ Link,
1632
+ {
1633
+ href: "/business/small-business-banking/services",
1634
+ role: "heading",
1635
+ children: "Services"
1636
+ }
1637
+ ) }),
1638
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1639
+ Link,
1640
+ {
1641
+ href: "/business/small-business-banking/services/merchant-services",
1642
+ children: "Merchant Services"
1643
+ }
1644
+ ) }),
1645
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1646
+ Link,
1647
+ {
1648
+ href: "/business/small-business-banking/services/payroll-services",
1649
+ children: "Payroll Services"
1650
+ }
1651
+ ) }),
1652
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1653
+ Link,
1654
+ {
1655
+ href: "/business/small-business-banking/services/sba-loans",
1656
+ children: "SBA Loans"
1657
+ }
1658
+ ) }),
1659
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1660
+ Link,
1661
+ {
1662
+ href: "/business/small-business-banking/services/treasury-management",
1663
+ children: "Treasury Management"
1664
+ }
1665
+ ) }),
1666
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1667
+ Link,
1668
+ {
1669
+ href: "/business/small-business-banking/services/insured-cash-sweep",
1670
+ children: "Insured Cash Sweep"
1671
+ }
1672
+ ) })
1673
+ ] })
1674
+ ] }),
1675
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1676
+ /* @__PURE__ */ jsx(
1677
+ Image,
1678
+ {
1679
+ src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
1680
+ alt: "",
1681
+ width: 20,
1682
+ height: 20
1683
+ }
1684
+ ),
1685
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1686
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1687
+ Link,
1688
+ {
1689
+ href: "/customer-support/business-support",
1690
+ role: "heading",
1691
+ children: "Other Resources"
1692
+ }
1693
+ ) }),
1694
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1695
+ Link,
1696
+ {
1697
+ href: "/customer-support/business-support/faq",
1698
+ children: "FAQ"
1699
+ }
1700
+ ) }),
1701
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/business-rates", children: "Rates" }) }),
1702
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/atm-locator", children: "ATM Locator" }) }),
1703
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1704
+ Link,
1705
+ {
1706
+ href: "/tools/calculators/saving-to-start-a-business-calculator",
1707
+ children: "Calculators"
1708
+ }
1709
+ ) })
1616
1710
  ] })
1617
- ]
1618
- }
1619
- ),
1620
- /* @__PURE__ */ jsx("hr", {}),
1621
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1622
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1623
- /* @__PURE__ */ jsx(
1624
- Image,
1625
- {
1626
- src: `https://images.axos.com/o9ov1v03uwqk/5mzLCkz1I0k3mPowiNFOg0/ba3624a134d3b33bae0658e7b6efa3f6/nav-submenu-industry-icon.svg`,
1627
- alt: "",
1628
- width: 20,
1629
- height: 20
1630
- }
1631
- ),
1632
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1633
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1634
- Link,
1635
- {
1636
- href: "/business/commercial-banking",
1637
- role: "heading",
1638
- children: "Solutions By Industry"
1639
- }
1640
- ) }),
1641
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1642
- Link,
1643
- {
1644
- href: "/business/commercial-banking/third-party-payment-processors",
1645
- children: "Third Party Payment Processors"
1646
- }
1647
- ) }),
1648
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1649
- Link,
1650
- {
1651
- href: "/business/commercial-banking/hoa-banking-and-lending",
1652
- children: "HOA Banking & Lending"
1653
- }
1654
- ) }),
1655
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1656
- Link,
1657
- {
1658
- href: "/business/commercial-banking/hoas-property-management",
1659
- children: "HOAs & Property Management"
1660
- }
1661
- ) }),
1662
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1663
- Link,
1664
- {
1665
- href: "/business/commercial-banking/1031-exchange-qualified-intermediaries",
1666
- children: "1031 Exchange Qualified Intermediaries"
1667
- }
1668
- ) }),
1669
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1670
- Link,
1671
- {
1672
- href: "/business/commercial-banking/title-and-escrow",
1673
- children: "Title & Escrow"
1674
- }
1675
- ) }),
1676
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1677
- Link,
1678
- {
1679
- href: "/business/commercial-banking/global-fiduciary-banking",
1680
- children: "Global Fiduciary Banking"
1681
- }
1682
- ) }),
1683
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1684
- Link,
1685
- {
1686
- href: `https://www.axosfiduciaryservices.com/`,
1687
- children: "Fiduciary Services"
1688
- }
1689
- ) }),
1690
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1691
- Link,
1692
- {
1693
- href: "/business/commercial-banking/business-management-banking",
1694
- children: "Business Management Banking"
1695
- }
1696
- ) }),
1697
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1698
- Link,
1699
- {
1700
- href: "/business/commercial-banking/hedge-funds-and-alternative-fund-banking-solutions",
1701
- children: "Hedge Funds & Alternative Fund Banking Solutions"
1702
- }
1703
- ) })
1704
1711
  ] })
1712
+ ] })
1713
+ ]
1714
+ }
1715
+ )
1716
+ ] }) })
1717
+ }
1718
+ ),
1719
+ hoveredLink === "combank" && /* @__PURE__ */ jsx(
1720
+ "div",
1721
+ {
1722
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1723
+ role: "menu",
1724
+ onMouseLeave: handleMouseLeave,
1725
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1726
+ /* @__PURE__ */ jsxs(
1727
+ "div",
1728
+ {
1729
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1730
+ children: [
1731
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1732
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Banking" }),
1733
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We customize treasury management solutions to meet the needs of your organization." })
1705
1734
  ] }),
1706
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1707
- /* @__PURE__ */ jsx(
1708
- Image,
1709
- {
1710
- src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
1711
- alt: "",
1712
- width: 20,
1713
- height: 20
1714
- }
1715
- ),
1716
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1717
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1718
- Link,
1735
+ /* @__PURE__ */ jsx(
1736
+ "div",
1737
+ {
1738
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
1739
+ children: /* @__PURE__ */ jsx(
1740
+ Image,
1719
1741
  {
1720
- href: "/business/commercial-banking",
1721
- role: "heading",
1722
- children: "Services"
1742
+ src: `https://images.axos.com/o9ov1v03uwqk/7rELrrwmhLt5Bz9KqxLgMM/27a7555956dc516e732a14f78428dbd4/nav-submen-combank.png`,
1743
+ alt: "",
1744
+ width: 232,
1745
+ height: 232
1723
1746
  }
1724
- ) }),
1725
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1726
- Link,
1747
+ )
1748
+ }
1749
+ )
1750
+ ]
1751
+ }
1752
+ ),
1753
+ /* @__PURE__ */ jsxs(
1754
+ "div",
1755
+ {
1756
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1757
+ children: [
1758
+ /* @__PURE__ */ jsxs(
1759
+ "div",
1760
+ {
1761
+ className: `${styles.headline} flex_row middle between`,
1762
+ children: [
1763
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Solutions from industry experts" }),
1764
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1765
+ /* @__PURE__ */ jsx(
1766
+ Image,
1767
+ {
1768
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1769
+ alt: "",
1770
+ width: 20,
1771
+ height: 20
1772
+ }
1773
+ ),
1774
+ /* @__PURE__ */ jsx(
1775
+ "div",
1776
+ {
1777
+ className: `${styles.headline_cta} ${styles.ml_8}`,
1778
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1779
+ }
1780
+ )
1781
+ ] })
1782
+ ]
1783
+ }
1784
+ ),
1785
+ /* @__PURE__ */ jsx("hr", {}),
1786
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1787
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1788
+ /* @__PURE__ */ jsx(
1789
+ Image,
1790
+ {
1791
+ src: `https://images.axos.com/o9ov1v03uwqk/5mzLCkz1I0k3mPowiNFOg0/ba3624a134d3b33bae0658e7b6efa3f6/nav-submenu-industry-icon.svg`,
1792
+ alt: "",
1793
+ width: 20,
1794
+ height: 20
1795
+ }
1796
+ ),
1797
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1798
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1799
+ Link,
1800
+ {
1801
+ href: "/business/commercial-banking",
1802
+ role: "heading",
1803
+ children: "Solutions By Industry"
1804
+ }
1805
+ ) }),
1806
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1807
+ Link,
1808
+ {
1809
+ href: "/business/commercial-banking/third-party-payment-processors",
1810
+ children: "Third Party Payment Processors"
1811
+ }
1812
+ ) }),
1813
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1814
+ Link,
1815
+ {
1816
+ href: "/business/commercial-banking/hoa-banking-and-lending",
1817
+ children: "HOA Banking & Lending"
1818
+ }
1819
+ ) }),
1820
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1821
+ Link,
1822
+ {
1823
+ href: "/business/commercial-banking/hoas-property-management",
1824
+ children: "HOAs & Property Management"
1825
+ }
1826
+ ) }),
1827
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1828
+ Link,
1829
+ {
1830
+ href: "/business/commercial-banking/1031-exchange-qualified-intermediaries",
1831
+ children: "1031 Exchange Qualified Intermediaries"
1832
+ }
1833
+ ) }),
1834
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1835
+ Link,
1836
+ {
1837
+ href: "/business/commercial-banking/title-and-escrow",
1838
+ children: "Title & Escrow"
1839
+ }
1840
+ ) }),
1841
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1842
+ Link,
1843
+ {
1844
+ href: "/business/commercial-banking/global-fiduciary-banking",
1845
+ children: "Global Fiduciary Banking"
1846
+ }
1847
+ ) }),
1848
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1849
+ Link,
1850
+ {
1851
+ href: `https://www.axosfiduciaryservices.com/`,
1852
+ children: "Fiduciary Services"
1853
+ }
1854
+ ) }),
1855
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1856
+ Link,
1857
+ {
1858
+ href: "/business/commercial-banking/business-management-banking",
1859
+ children: "Business Management Banking"
1860
+ }
1861
+ ) }),
1862
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1863
+ Link,
1864
+ {
1865
+ href: "/business/commercial-banking/hedge-funds-and-alternative-fund-banking-solutions",
1866
+ children: "Hedge Funds & Alternative Fund Banking Solutions"
1867
+ }
1868
+ ) }),
1869
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: findMoreAxosDomains("{AFS}"), children: "Axos Fiduciary Services" }) }),
1870
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "https://www.zis.com/", children: "Zenith" }) })
1871
+ ] })
1872
+ ] }),
1873
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1874
+ /* @__PURE__ */ jsx(
1875
+ Image,
1876
+ {
1877
+ src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
1878
+ alt: "",
1879
+ width: 20,
1880
+ height: 20
1881
+ }
1882
+ ),
1883
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1884
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1885
+ Link,
1886
+ {
1887
+ href: "/business/commercial-banking",
1888
+ role: "heading",
1889
+ children: "Services"
1890
+ }
1891
+ ) }),
1892
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1893
+ Link,
1894
+ {
1895
+ href: "/business/commercial-banking/analyzed-checking",
1896
+ children: "Analyzed Business Checking"
1897
+ }
1898
+ ) }),
1899
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1900
+ Link,
1901
+ {
1902
+ href: "/business/business-merchant-services",
1903
+ children: "Merchant Services"
1904
+ }
1905
+ ) }),
1906
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1907
+ Link,
1908
+ {
1909
+ href: "/business/commercial-banking/treasury-management",
1910
+ children: "Treasury Management"
1911
+ }
1912
+ ) }),
1913
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
1914
+ Link,
1915
+ {
1916
+ href: "/business/commercial-banking/intrafi-network-deposits",
1917
+ children: [
1918
+ "IntraFi",
1919
+ /* @__PURE__ */ jsx("sup", { children: "®" }),
1920
+ " Network Deposits",
1921
+ /* @__PURE__ */ jsx("sup", { children: "℠" })
1922
+ ]
1923
+ }
1924
+ ) })
1925
+ ] })
1926
+ ] }),
1927
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1928
+ /* @__PURE__ */ jsx(
1929
+ Image,
1930
+ {
1931
+ src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
1932
+ alt: "",
1933
+ width: 20,
1934
+ height: 20
1935
+ }
1936
+ ),
1937
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1938
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1939
+ Link,
1940
+ {
1941
+ href: "/customer-support/business-support",
1942
+ role: "heading",
1943
+ children: "Other Resources"
1944
+ }
1945
+ ) }),
1946
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1947
+ Link,
1948
+ {
1949
+ href: "/business/commercial-banking/calculators",
1950
+ children: "Calculators"
1951
+ }
1952
+ ) })
1953
+ ] })
1954
+ ] })
1955
+ ] })
1956
+ ]
1957
+ }
1958
+ )
1959
+ ] }) })
1960
+ }
1961
+ ),
1962
+ hoveredLink === "comlending" && /* @__PURE__ */ jsx(
1963
+ "div",
1964
+ {
1965
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1966
+ role: "menu",
1967
+ onMouseLeave: handleMouseLeave,
1968
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1969
+ /* @__PURE__ */ jsxs(
1970
+ "div",
1971
+ {
1972
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1973
+ children: [
1974
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1975
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Lending" }),
1976
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We are a lending partner with the flexibility to deliver results." })
1977
+ ] }),
1978
+ /* @__PURE__ */ jsx(
1979
+ "div",
1980
+ {
1981
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
1982
+ children: /* @__PURE__ */ jsx(
1983
+ Image,
1727
1984
  {
1728
- href: "/business/commercial-banking/analyzed-checking",
1729
- children: "Analyzed Business Checking"
1985
+ src: `https://images.axos.com/o9ov1v03uwqk/6PMA1kEss89S6m1BawAltW/0ffe57eaaa65e77e90e9f00396ee8ea6/nav-submenu-comlending.png`,
1986
+ alt: "",
1987
+ width: 232,
1988
+ height: 230
1730
1989
  }
1731
- ) }),
1732
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/business-merchant-services", children: "Merchant Services" }) }),
1733
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1734
- Link,
1990
+ )
1991
+ }
1992
+ )
1993
+ ]
1994
+ }
1995
+ ),
1996
+ /* @__PURE__ */ jsxs(
1997
+ "div",
1998
+ {
1999
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2000
+ children: [
2001
+ /* @__PURE__ */ jsxs(
2002
+ "div",
2003
+ {
2004
+ className: `${styles.headline} flex_row middle between`,
2005
+ children: [
2006
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Personalized lending solutions" }),
2007
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2008
+ /* @__PURE__ */ jsx(
2009
+ Image,
2010
+ {
2011
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2012
+ alt: "",
2013
+ width: 20,
2014
+ height: 20
2015
+ }
2016
+ ),
2017
+ /* @__PURE__ */ jsx(
2018
+ "div",
2019
+ {
2020
+ className: `${styles.headline_cta} ${styles.ml_8}`,
2021
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
2022
+ }
2023
+ )
2024
+ ] })
2025
+ ]
2026
+ }
2027
+ ),
2028
+ /* @__PURE__ */ jsx("hr", {}),
2029
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
2030
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2031
+ /* @__PURE__ */ jsx(
2032
+ Image,
2033
+ {
2034
+ src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
2035
+ alt: "",
2036
+ width: 20,
2037
+ height: 20
2038
+ }
2039
+ ),
2040
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2041
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2042
+ Link,
2043
+ {
2044
+ href: "/business/commercial-lending",
2045
+ role: "heading",
2046
+ children: "Credit and Financial"
2047
+ }
2048
+ ) }),
2049
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2050
+ Link,
2051
+ {
2052
+ href: "/business/commercial-lending/commercial-lines-of-credit",
2053
+ children: "Commercial Lines of Credit"
2054
+ }
2055
+ ) }),
2056
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2057
+ Link,
2058
+ {
2059
+ href: "/business/commercial-lending/commercial-term-loans",
2060
+ children: "Comnmercial Term Loans"
2061
+ }
2062
+ ) }),
2063
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2064
+ Link,
2065
+ {
2066
+ href: "/business/commercial-lending/equipment-finance",
2067
+ children: "Equipment Finance"
2068
+ }
2069
+ ) })
2070
+ ] })
2071
+ ] }),
2072
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2073
+ /* @__PURE__ */ jsx(
2074
+ Image,
2075
+ {
2076
+ src: `https://images.axos.com/o9ov1v03uwqk/cHRJYycmvcbYj6ppcTQvg/ea375c834b0ced5ba646d1e88bb7828e/nav-submenu-lending-icon.svg`,
2077
+ alt: "",
2078
+ width: 20,
2079
+ height: 20
2080
+ }
2081
+ ),
2082
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2083
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2084
+ Link,
2085
+ {
2086
+ href: "/business/commercial-lending",
2087
+ role: "heading",
2088
+ children: "Commercial Lending"
2089
+ }
2090
+ ) }),
2091
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2092
+ Link,
2093
+ {
2094
+ href: "/business/commercial-lending/Commercial-Term-Loans",
2095
+ children: "Commercial Real Estate Bridge & Construction Lending"
2096
+ }
2097
+ ) }),
2098
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2099
+ Link,
2100
+ {
2101
+ href: "/business/commercial-lending/hoa-lending",
2102
+ children: "HOA Lending"
2103
+ }
2104
+ ) }),
2105
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2106
+ Link,
2107
+ {
2108
+ href: "/business/commercial-lending/lender-finance",
2109
+ children: "Lender Finance"
2110
+ }
2111
+ ) }),
2112
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2113
+ Link,
2114
+ {
2115
+ href: "/business/commercial-lending/warehouse-lending",
2116
+ children: "Residential Warehouse Lending"
2117
+ }
2118
+ ) }),
2119
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2120
+ Link,
2121
+ {
2122
+ href: "/business/commercial-lending/small-balance-commercial-real-estate",
2123
+ children: "Small Balance Commercial Real Estate"
2124
+ }
2125
+ ) }),
2126
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2127
+ Link,
2128
+ {
2129
+ href: "/business/commercial-lending/leveraged-finance",
2130
+ children: "Leveraged Finance"
2131
+ }
2132
+ ) }),
2133
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2134
+ Link,
2135
+ {
2136
+ href: `https://lavictoirefinance.com/dealers`,
2137
+ children: "New! Marine Dealer Floorplan Finance"
2138
+ }
2139
+ ) })
2140
+ ] })
2141
+ ] }),
2142
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2143
+ /* @__PURE__ */ jsx(
2144
+ Image,
2145
+ {
2146
+ src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
2147
+ alt: "",
2148
+ width: 20,
2149
+ height: 20
2150
+ }
2151
+ ),
2152
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2153
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2154
+ Link,
2155
+ {
2156
+ href: "/customer-support/business-support",
2157
+ role: "heading",
2158
+ children: "Other Resources"
2159
+ }
2160
+ ) }),
2161
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", children: "Commercial Portal" }) }),
2162
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2163
+ Link,
2164
+ {
2165
+ href: "/business/commercial-banking/calculators",
2166
+ children: "Calculators"
2167
+ }
2168
+ ) })
2169
+ ] })
2170
+ ] })
2171
+ ] })
2172
+ ]
2173
+ }
2174
+ )
2175
+ ] }) })
2176
+ }
2177
+ ),
2178
+ hoveredLink === "wholelending" && /* @__PURE__ */ jsx(
2179
+ "div",
2180
+ {
2181
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2182
+ role: "menu",
2183
+ onMouseLeave: handleMouseLeave,
2184
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2185
+ /* @__PURE__ */ jsxs(
2186
+ "div",
2187
+ {
2188
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2189
+ children: [
2190
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2191
+ /* @__PURE__ */ jsx("p", { role: "heading", children: 'Say "YES" to Your Clients' }),
2192
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Fund more loans with our unique underwriting experience. Our mix and match program fits more needs." })
2193
+ ] }),
2194
+ /* @__PURE__ */ jsx(
2195
+ "div",
2196
+ {
2197
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
2198
+ children: /* @__PURE__ */ jsx(
2199
+ Image,
1735
2200
  {
1736
- href: "/business/commercial-banking/treasury-management",
1737
- children: "Treasury Management"
2201
+ src: `https://images.axos.com/o9ov1v03uwqk/6YLFvmdNVGWcf3bFlimNSs/ca2dd270ad3a1351b6bdf7369944ee74/nav-submenu-wholelending.png`,
2202
+ alt: "",
2203
+ width: 232,
2204
+ height: 232
1738
2205
  }
1739
- ) }),
1740
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
2206
+ )
2207
+ }
2208
+ ),
2209
+ /* @__PURE__ */ jsx(
2210
+ "div",
2211
+ {
2212
+ className: `${styles.mt_8} ${styles.dd_media_cta}`,
2213
+ children: /* @__PURE__ */ jsx(
1741
2214
  Link,
1742
2215
  {
1743
- href: "/business/commercial-banking/intrafi-network-deposits",
1744
- children: [
1745
- "IntraFi",
1746
- /* @__PURE__ */ jsx("sup", { children: "®" }),
1747
- " Network Deposits",
1748
- /* @__PURE__ */ jsx("sup", { children: "℠" })
1749
- ]
2216
+ href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2217
+ "aria-label": "Get started with the Axos Quick Pricer",
2218
+ className: "text_center bg_white",
2219
+ children: "Price a Loan"
1750
2220
  }
1751
- ) })
1752
- ] })
1753
- ] }),
1754
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2221
+ )
2222
+ }
2223
+ )
2224
+ ]
2225
+ }
2226
+ ),
2227
+ /* @__PURE__ */ jsxs(
2228
+ "div",
2229
+ {
2230
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2231
+ children: [
2232
+ /* @__PURE__ */ jsxs(
2233
+ "div",
2234
+ {
2235
+ className: `${styles.headline} flex_row middle between`,
2236
+ children: [
2237
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Expand your options" }),
2238
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2239
+ /* @__PURE__ */ jsx(
2240
+ Image,
2241
+ {
2242
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2243
+ alt: "",
2244
+ width: 20,
2245
+ height: 20
2246
+ }
2247
+ ),
2248
+ /* @__PURE__ */ jsx(
2249
+ "div",
2250
+ {
2251
+ className: `${styles.headline_cta} ${styles.ml_8}`,
2252
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2253
+ }
2254
+ )
2255
+ ] })
2256
+ ]
2257
+ }
2258
+ ),
2259
+ /* @__PURE__ */ jsx("hr", {}),
2260
+ /* @__PURE__ */ jsx("div", { className: `${styles.site_lists} flex_row`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1755
2261
  /* @__PURE__ */ jsx(
1756
2262
  Image,
1757
2263
  {
1758
- src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
2264
+ src: `https://images.axos.com/o9ov1v03uwqk/2hdeAHrWhgXNPJRcSVIDSb/8f1684584f4bdbf5ca73fea6e913d11a/nav-submenu-wcpl-icon.svg`,
1759
2265
  alt: "",
1760
2266
  width: 20,
1761
2267
  height: 20
@@ -1765,136 +2271,119 @@ function SubNavBar() {
1765
2271
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1766
2272
  Link,
1767
2273
  {
1768
- href: "/customer-support/business-support",
2274
+ href: "/partners/wholesale-correspondent-portfolio-lending",
1769
2275
  role: "heading",
1770
- children: "Other Resources"
2276
+ children: "Wholesale & Correspondent Lending"
1771
2277
  }
1772
2278
  ) }),
1773
2279
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1774
2280
  Link,
1775
2281
  {
1776
- href: "/business/commercial-banking/calculators",
1777
- children: "Calculators"
1778
- }
1779
- ) })
1780
- ] })
1781
- ] })
1782
- ] })
1783
- ]
1784
- }
1785
- )
1786
- ] }) })
1787
- }
1788
- ),
1789
- hoveredLink === "comlending" && /* @__PURE__ */ jsx(
1790
- "div",
1791
- {
1792
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
1793
- role: "menu",
1794
- onMouseLeave: handleMouseLeave,
1795
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
1796
- /* @__PURE__ */ jsxs(
1797
- "div",
1798
- {
1799
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
1800
- children: [
1801
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
1802
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Lending" }),
1803
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We are a lending partner with the flexibility to deliver results." })
1804
- ] }),
1805
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
1806
- Image,
1807
- {
1808
- src: `https://images.axos.com/o9ov1v03uwqk/6PMA1kEss89S6m1BawAltW/0ffe57eaaa65e77e90e9f00396ee8ea6/nav-submenu-comlending.png`,
1809
- alt: "",
1810
- width: 232,
1811
- height: 230
1812
- }
1813
- ) })
1814
- ]
1815
- }
1816
- ),
1817
- /* @__PURE__ */ jsxs(
1818
- "div",
1819
- {
1820
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
1821
- children: [
1822
- /* @__PURE__ */ jsxs(
1823
- "div",
1824
- {
1825
- className: `${styles.headline} flex_row middle between`,
1826
- children: [
1827
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Personalized lending solutions" }),
1828
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
1829
- /* @__PURE__ */ jsx(
1830
- Image,
1831
- {
1832
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
1833
- alt: "",
1834
- width: 20,
1835
- height: 20
1836
- }
1837
- ),
1838
- /* @__PURE__ */ jsx(
1839
- "div",
1840
- {
1841
- className: `${styles.headline_cta} ${styles.ml_8}`,
1842
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1843
- }
1844
- )
1845
- ] })
1846
- ]
1847
- }
1848
- ),
1849
- /* @__PURE__ */ jsx("hr", {}),
1850
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
1851
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1852
- /* @__PURE__ */ jsx(
1853
- Image,
1854
- {
1855
- src: `https://images.axos.com/o9ov1v03uwqk/1C6PYF4ecl8NB0bE839Dca/cab3ae959e83d8546491e792ead4573a/nav-submenu-checking-icon.svg`,
1856
- alt: "",
1857
- width: 20,
1858
- height: 20
1859
- }
1860
- ),
1861
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1862
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1863
- Link,
1864
- {
1865
- href: "/business/commercial-lending",
1866
- role: "heading",
1867
- children: "Credit and Financial"
2282
+ href: "/partners/wholesale-correspondent-portfolio-lending/resources-support",
2283
+ children: "Resources & Support"
1868
2284
  }
1869
2285
  ) }),
1870
2286
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1871
2287
  Link,
1872
2288
  {
1873
- href: "/business/commercial-lending/commercial-lines-of-credit",
1874
- children: "Commercial Lines of Credit"
2289
+ href: `https://thirdpartylending.axosbank.com/index`,
2290
+ children: "Register a Loan"
1875
2291
  }
1876
2292
  ) }),
1877
2293
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1878
2294
  Link,
1879
2295
  {
1880
- href: "/business/commercial-lending/commercial-term-loans",
1881
- children: "Comnmercial Term Loans"
2296
+ href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2297
+ children: "Quick Pricer"
1882
2298
  }
1883
2299
  ) }),
1884
2300
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1885
2301
  Link,
1886
2302
  {
1887
- href: "/business/commercial-lending/equipment-finance",
1888
- children: "Equipment Finance"
2303
+ href: "/partners/wholesale-correspondent-portfolio-lending/meet-the-team",
2304
+ children: "Meet the Team"
1889
2305
  }
1890
2306
  ) })
1891
2307
  ] })
2308
+ ] }) })
2309
+ ]
2310
+ }
2311
+ )
2312
+ ] }) })
2313
+ }
2314
+ ),
2315
+ hoveredLink === "sbc" && /* @__PURE__ */ jsx(
2316
+ "div",
2317
+ {
2318
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2319
+ role: "menu",
2320
+ onMouseLeave: handleMouseLeave,
2321
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2322
+ /* @__PURE__ */ jsxs(
2323
+ "div",
2324
+ {
2325
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2326
+ children: [
2327
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2328
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Small Balance Commercial Real Estate" }),
2329
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Try our fast and streamlined loan process." })
1892
2330
  ] }),
1893
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2331
+ /* @__PURE__ */ jsx(
2332
+ "div",
2333
+ {
2334
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
2335
+ children: /* @__PURE__ */ jsx(
2336
+ Image,
2337
+ {
2338
+ src: `https://images.axos.com/o9ov1v03uwqk/wU9cjrkWVQ4eb6i013qVO/bdca7f8f9a6adcaea6d27f6fb81f2416/nav-submenu-sbc.png`,
2339
+ alt: "",
2340
+ width: 232,
2341
+ height: 232
2342
+ }
2343
+ )
2344
+ }
2345
+ )
2346
+ ]
2347
+ }
2348
+ ),
2349
+ /* @__PURE__ */ jsxs(
2350
+ "div",
2351
+ {
2352
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2353
+ children: [
2354
+ /* @__PURE__ */ jsxs(
2355
+ "div",
2356
+ {
2357
+ className: `${styles.headline} flex_row middle between`,
2358
+ children: [
2359
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Diverse portfolio of lending options" }),
2360
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2361
+ /* @__PURE__ */ jsx(
2362
+ Image,
2363
+ {
2364
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2365
+ alt: "",
2366
+ width: 20,
2367
+ height: 20
2368
+ }
2369
+ ),
2370
+ /* @__PURE__ */ jsx(
2371
+ "div",
2372
+ {
2373
+ className: `${styles.headline_cta} ${styles.ml_8}`,
2374
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2375
+ }
2376
+ )
2377
+ ] })
2378
+ ]
2379
+ }
2380
+ ),
2381
+ /* @__PURE__ */ jsx("hr", {}),
2382
+ /* @__PURE__ */ jsx("div", { className: `${styles.site_lists} flex_row`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1894
2383
  /* @__PURE__ */ jsx(
1895
2384
  Image,
1896
2385
  {
1897
- src: `https://images.axos.com/o9ov1v03uwqk/cHRJYycmvcbYj6ppcTQvg/ea375c834b0ced5ba646d1e88bb7828e/nav-submenu-lending-icon.svg`,
2386
+ src: `https://images.axos.com/o9ov1v03uwqk/1REUyghtG4xnJtAsZDgRbT/89de7055038937a1392d53c3c0ad7340/nav-submenu-sbc-icon.svg`,
1898
2387
  alt: "",
1899
2388
  width: 20,
1900
2389
  height: 20
@@ -1904,223 +2393,140 @@ function SubNavBar() {
1904
2393
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1905
2394
  Link,
1906
2395
  {
1907
- href: "/business/commercial-lending",
2396
+ href: "/partners/small-balance-commercial",
1908
2397
  role: "heading",
1909
- children: "Commercial Lending"
2398
+ children: "Small Balance Commercial"
1910
2399
  }
1911
2400
  ) }),
1912
2401
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1913
2402
  Link,
1914
2403
  {
1915
- href: "/business/commercial-lending/Commercial-Term-Loans",
1916
- children: "Commercial Real Estate Bridge & Construction Lending"
2404
+ href: "/partners/small-balance-commercial/investor-owned-2-4-unit-lending",
2405
+ children: "Investor-Owned 2-4 Unit Properties"
1917
2406
  }
1918
2407
  ) }),
1919
2408
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1920
2409
  Link,
1921
2410
  {
1922
- href: "/business/commercial-lending/hoa-lending",
1923
- children: "HOA Lending"
2411
+ href: "/partners/small-balance-commercial/mixed-use-lending",
2412
+ children: "Mixed-Use"
1924
2413
  }
1925
2414
  ) }),
1926
2415
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1927
2416
  Link,
1928
2417
  {
1929
- href: "/business/commercial-lending/lender-finance",
1930
- children: "Lender Finance"
2418
+ href: "/partners/small-balance-commercial/mobile-home-park",
2419
+ children: "Mobile Home Park"
1931
2420
  }
1932
2421
  ) }),
1933
2422
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1934
2423
  Link,
1935
2424
  {
1936
- href: "/business/commercial-lending/warehouse-lending",
1937
- children: "Residential Warehouse Lending"
2425
+ href: "/partners/small-balance-commercial/multifamily-lending",
2426
+ children: "Multi-Family Housing"
1938
2427
  }
1939
2428
  ) }),
1940
2429
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1941
2430
  Link,
1942
2431
  {
1943
- href: "/business/commercial-lending/small-balance-commercial-real-estate",
1944
- children: "Small Balance Commercial Real Estate"
2432
+ href: "/partners/small-balance-commercial/non-resident-aliens",
2433
+ children: "Non-Resident Aliens"
1945
2434
  }
1946
2435
  ) }),
1947
2436
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1948
2437
  Link,
1949
2438
  {
1950
- href: "/business/commercial-lending/leveraged-finance",
1951
- children: "Leveraged Finance"
2439
+ href: "/partners/small-balance-commercial/retail-office-and-industrial",
2440
+ children: "Retail Office & Industrial"
1952
2441
  }
1953
2442
  ) }),
1954
2443
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1955
2444
  Link,
1956
2445
  {
1957
- href: `https://lavictoirefinance.com/dealers`,
1958
- children: "New! Marine Dealer Floorplan Finance"
2446
+ href: "/partners/small-balance-commercial/student-housing",
2447
+ children: "Student Housing"
1959
2448
  }
1960
2449
  ) })
1961
2450
  ] })
2451
+ ] }) })
2452
+ ]
2453
+ }
2454
+ )
2455
+ ] }) })
2456
+ }
2457
+ ),
2458
+ hoveredLink === "dealerservices" && /* @__PURE__ */ jsx(
2459
+ "div",
2460
+ {
2461
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2462
+ role: "menu",
2463
+ onMouseLeave: handleMouseLeave,
2464
+ children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2465
+ /* @__PURE__ */ jsxs(
2466
+ "div",
2467
+ {
2468
+ className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2469
+ children: [
2470
+ /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2471
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Dealer Services" }),
2472
+ /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We put dealerships in the driver's seat." })
1962
2473
  ] }),
1963
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
1964
- /* @__PURE__ */ jsx(
1965
- Image,
1966
- {
1967
- src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
1968
- alt: "",
1969
- width: 20,
1970
- height: 20
1971
- }
1972
- ),
1973
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1974
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1975
- Link,
1976
- {
1977
- href: "/customer-support/business-support",
1978
- role: "heading",
1979
- children: "Other Resources"
1980
- }
1981
- ) }),
1982
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", children: "Commercial Portal" }) }),
1983
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1984
- Link,
1985
- {
1986
- href: "/business/commercial-banking/calculators",
1987
- children: "Calculators"
1988
- }
1989
- ) })
1990
- ] })
1991
- ] })
1992
- ] })
1993
- ]
1994
- }
1995
- )
1996
- ] }) })
1997
- }
1998
- ),
1999
- hoveredLink === "wholelending" && /* @__PURE__ */ jsx(
2000
- "div",
2001
- {
2002
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2003
- role: "menu",
2004
- onMouseLeave: handleMouseLeave,
2005
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2006
- /* @__PURE__ */ jsxs(
2007
- "div",
2008
- {
2009
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2010
- children: [
2011
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2012
- /* @__PURE__ */ jsx("p", { role: "heading", children: 'Say "YES" to Your Clients' }),
2013
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Fund more loans with our unique underwriting experience. Our mix and match program fits more needs." })
2014
- ] }),
2015
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
2016
- Image,
2017
- {
2018
- src: `https://images.axos.com/o9ov1v03uwqk/6YLFvmdNVGWcf3bFlimNSs/ca2dd270ad3a1351b6bdf7369944ee74/nav-submenu-wholelending.png`,
2019
- alt: "",
2020
- width: 232,
2021
- height: 232
2022
- }
2023
- ) }),
2024
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
2025
- Link,
2026
- {
2027
- href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2028
- "aria-label": "Get started with the Axos Quick Pricer",
2029
- className: "text_center bg_white",
2030
- children: "Price a Loan"
2031
- }
2032
- ) })
2033
- ]
2034
- }
2035
- ),
2036
- /* @__PURE__ */ jsxs(
2037
- "div",
2038
- {
2039
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2040
- children: [
2041
- /* @__PURE__ */ jsxs(
2042
- "div",
2043
- {
2044
- className: `${styles.headline} flex_row middle between`,
2045
- children: [
2046
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Expand your options" }),
2047
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2048
- /* @__PURE__ */ jsx(
2049
- Image,
2050
- {
2051
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2052
- alt: "",
2053
- width: 20,
2054
- height: 20
2055
- }
2056
- ),
2057
- /* @__PURE__ */ jsx(
2058
- "div",
2059
- {
2060
- className: `${styles.headline_cta} ${styles.ml_8}`,
2061
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2062
- }
2063
- )
2064
- ] })
2065
- ]
2066
- }
2067
- ),
2068
- /* @__PURE__ */ jsx("hr", {}),
2069
- /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists} flex_row`, children: [
2070
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2071
- /* @__PURE__ */ jsx(
2072
- Image,
2073
- {
2074
- src: `https://images.axos.com/o9ov1v03uwqk/2hdeAHrWhgXNPJRcSVIDSb/8f1684584f4bdbf5ca73fea6e913d11a/nav-submenu-wcpl-icon.svg`,
2075
- alt: "",
2076
- width: 20,
2077
- height: 20
2078
- }
2079
- ),
2080
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2081
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2082
- Link,
2083
- {
2084
- href: "/partners/wholesale-correspondent-portfolio-lending",
2085
- role: "heading",
2086
- children: "Wholesale & Correspondent Lending"
2087
- }
2088
- ) }),
2089
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2090
- Link,
2091
- {
2092
- href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products",
2093
- children: "All Programs & Products"
2094
- }
2095
- ) }),
2096
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2097
- Link,
2098
- {
2099
- href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products/dscr",
2100
- children: "DSCR"
2101
- }
2102
- ) }),
2103
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2104
- Link,
2105
- {
2106
- href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products/cash-flow-maximizer",
2107
- children: "Cash-Flow mAXimizer"
2108
- }
2109
- ) }),
2110
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2111
- Link,
2474
+ /* @__PURE__ */ jsx(
2475
+ "div",
2476
+ {
2477
+ className: `${styles.mt_8} ${styles.dd_media_img}`,
2478
+ children: /* @__PURE__ */ jsx(
2479
+ Image,
2112
2480
  {
2113
- href: "/partners/wholesale-correspondent-portfolio-lending/meet-the-team",
2114
- children: "Meet the Team"
2481
+ src: `https://images.axos.com/o9ov1v03uwqk/3wtG13mXSTgSzMoB0YU3Ot/b3f7ca4554c78d770154c4b473daf4d7/nav-submenu-dealer.png`,
2482
+ alt: "",
2483
+ width: 232,
2484
+ height: 162
2115
2485
  }
2116
- ) })
2117
- ] })
2118
- ] }),
2119
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2486
+ )
2487
+ }
2488
+ )
2489
+ ]
2490
+ }
2491
+ ),
2492
+ /* @__PURE__ */ jsxs(
2493
+ "div",
2494
+ {
2495
+ className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2496
+ children: [
2497
+ /* @__PURE__ */ jsxs(
2498
+ "div",
2499
+ {
2500
+ className: `${styles.headline} flex_row middle between`,
2501
+ children: [
2502
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Fueling results for dealerships" }),
2503
+ /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2504
+ /* @__PURE__ */ jsx(
2505
+ Image,
2506
+ {
2507
+ src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2508
+ alt: "",
2509
+ width: 20,
2510
+ height: 20
2511
+ }
2512
+ ),
2513
+ /* @__PURE__ */ jsx(
2514
+ "div",
2515
+ {
2516
+ className: `${styles.headline_cta} ${styles.ml_8}`,
2517
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2518
+ }
2519
+ )
2520
+ ] })
2521
+ ]
2522
+ }
2523
+ ),
2524
+ /* @__PURE__ */ jsx("hr", {}),
2525
+ /* @__PURE__ */ jsx("div", { className: `${styles.site_lists} flex_row`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2120
2526
  /* @__PURE__ */ jsx(
2121
2527
  Image,
2122
2528
  {
2123
- src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
2529
+ src: `https://images.axos.com/o9ov1v03uwqk/jpqd1KnknpG6gVaYg04Bl/a55d179434815dc4029ee413d8d7a703/nav-submenu-auto-icon.webp`,
2124
2530
  alt: "",
2125
2531
  width: 20,
2126
2532
  height: 20
@@ -2130,261 +2536,28 @@ function SubNavBar() {
2130
2536
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2131
2537
  Link,
2132
2538
  {
2133
- href: "/partners/wholesale-correspondent-portfolio-lending/resources-support",
2539
+ href: "/partners/dealer-services",
2134
2540
  role: "heading",
2135
- children: "Resources & Support"
2541
+ children: "Dealer Services"
2136
2542
  }
2137
2543
  ) }),
2138
2544
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2139
2545
  Link,
2140
2546
  {
2141
- href: `https://thirdpartylending.axosbank.com/index`,
2142
- children: "Register a Loan"
2143
- }
2144
- ) }),
2145
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2146
- Link,
2147
- {
2148
- href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2149
- children: "Quick Pricer"
2547
+ href: "/partners/dealer-services/contact",
2548
+ children: "Request More Information"
2150
2549
  }
2151
2550
  ) })
2152
2551
  ] })
2153
- ] })
2154
- ] })
2155
- ]
2156
- }
2157
- )
2158
- ] }) })
2159
- }
2160
- ),
2161
- hoveredLink === "sbc" && /* @__PURE__ */ jsx(
2162
- "div",
2163
- {
2164
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2165
- role: "menu",
2166
- onMouseLeave: handleMouseLeave,
2167
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2168
- /* @__PURE__ */ jsxs(
2169
- "div",
2170
- {
2171
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2172
- children: [
2173
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2174
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Small Balance Commercial Real Estate" }),
2175
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Try our fast and streamlined loan process." })
2176
- ] }),
2177
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
2178
- Image,
2179
- {
2180
- src: `https://images.axos.com/o9ov1v03uwqk/wU9cjrkWVQ4eb6i013qVO/bdca7f8f9a6adcaea6d27f6fb81f2416/nav-submenu-sbc.png`,
2181
- alt: "",
2182
- width: 232,
2183
- height: 232
2184
- }
2185
- ) })
2186
- ]
2187
- }
2188
- ),
2189
- /* @__PURE__ */ jsxs(
2190
- "div",
2191
- {
2192
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2193
- children: [
2194
- /* @__PURE__ */ jsxs(
2195
- "div",
2196
- {
2197
- className: `${styles.headline} flex_row middle between`,
2198
- children: [
2199
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Diverse portfolio of lending options" }),
2200
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2201
- /* @__PURE__ */ jsx(
2202
- Image,
2203
- {
2204
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2205
- alt: "",
2206
- width: 20,
2207
- height: 20
2208
- }
2209
- ),
2210
- /* @__PURE__ */ jsx(
2211
- "div",
2212
- {
2213
- className: `${styles.headline_cta} ${styles.ml_8}`,
2214
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2215
- }
2216
- )
2217
- ] })
2218
- ]
2219
- }
2220
- ),
2221
- /* @__PURE__ */ jsx("hr", {}),
2222
- /* @__PURE__ */ jsx("div", { className: `${styles.site_lists} flex_row`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2223
- /* @__PURE__ */ jsx(
2224
- Image,
2225
- {
2226
- src: `https://images.axos.com/o9ov1v03uwqk/1REUyghtG4xnJtAsZDgRbT/89de7055038937a1392d53c3c0ad7340/nav-submenu-sbc-icon.svg`,
2227
- alt: "",
2228
- width: 20,
2229
- height: 20
2230
- }
2231
- ),
2232
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2233
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2234
- Link,
2235
- {
2236
- href: "/partners/small-balance-commercial",
2237
- role: "heading",
2238
- children: "Small Balance Commercial"
2239
- }
2240
- ) }),
2241
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2242
- Link,
2243
- {
2244
- href: "/partners/small-balance-commercial/investor-owned-2-4-unit-lending",
2245
- children: "Investor-Owned 2-4 Unit Properties"
2246
- }
2247
- ) }),
2248
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2249
- Link,
2250
- {
2251
- href: "/partners/small-balance-commercial/mixed-use-lending",
2252
- children: "Mixed-Use"
2253
- }
2254
- ) }),
2255
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2256
- Link,
2257
- {
2258
- href: "/partners/small-balance-commercial/mobile-home-park",
2259
- children: "Mobile Home Park"
2260
- }
2261
- ) }),
2262
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2263
- Link,
2264
- {
2265
- href: "/partners/small-balance-commercial/multifamily-lending",
2266
- children: "Multi-Family Housing"
2267
- }
2268
- ) }),
2269
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2270
- Link,
2271
- {
2272
- href: "/partners/small-balance-commercial/non-resident-aliens",
2273
- children: "Non-Resident Aliens"
2274
- }
2275
- ) }),
2276
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2277
- Link,
2278
- {
2279
- href: "/partners/small-balance-commercial/retail-office-and-industrial",
2280
- children: "Retail Office & Industrial"
2281
- }
2282
- ) }),
2283
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2284
- Link,
2285
- {
2286
- href: "/partners/small-balance-commercial/student-housing",
2287
- children: "Student Housing"
2288
- }
2289
- ) })
2290
- ] })
2291
- ] }) })
2292
- ]
2293
- }
2294
- )
2295
- ] }) })
2296
- }
2297
- ),
2298
- hoveredLink === "dealerservices" && /* @__PURE__ */ jsx(
2299
- "div",
2300
- {
2301
- className: `${styles.dd_wrapper} ${styles.desktop_only} `,
2302
- role: "menu",
2303
- onMouseLeave: handleMouseLeave,
2304
- children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.shadow} rounded flex_row`, children: [
2305
- /* @__PURE__ */ jsxs(
2306
- "div",
2307
- {
2308
- className: `${styles.dd_media} ${styles.opacity} ${dd_media} w_auto text_center`,
2309
- children: [
2310
- /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
2311
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Dealer Services" }),
2312
- /* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "We put dealerships in the driver's seat." })
2313
- ] }),
2314
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_img}`, children: /* @__PURE__ */ jsx(
2315
- Image,
2316
- {
2317
- src: `https://images.axos.com/o9ov1v03uwqk/3wtG13mXSTgSzMoB0YU3Ot/b3f7ca4554c78d770154c4b473daf4d7/nav-submenu-dealer.png`,
2318
- alt: "",
2319
- width: 232,
2320
- height: 162
2321
- }
2322
- ) })
2323
- ]
2324
- }
2325
- ),
2326
- /* @__PURE__ */ jsxs(
2327
- "div",
2328
- {
2329
- className: `${styles.dd_site_navs} ${styles.opacity} bg_white`,
2330
- children: [
2331
- /* @__PURE__ */ jsxs(
2332
- "div",
2333
- {
2334
- className: `${styles.headline} flex_row middle between`,
2335
- children: [
2336
- /* @__PURE__ */ jsx("p", { role: "heading", children: "Fueling results for dealerships" }),
2337
- /* @__PURE__ */ jsxs("span", { className: "flex_row middle ml_24 w_auto", children: [
2338
- /* @__PURE__ */ jsx(
2339
- Image,
2340
- {
2341
- src: `https://images.axos.com/o9ov1v03uwqk/jK8YfsETu8QGn7Vpb7x10/3e07dd61bacd8cacb4d62650e88a5e0b/nav-submenu-help-icon.svg`,
2342
- alt: "",
2343
- width: 20,
2344
- height: 20
2345
- }
2346
- ),
2347
- /* @__PURE__ */ jsx(
2348
- "div",
2349
- {
2350
- className: `${styles.headline_cta} ${styles.ml_8}`,
2351
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2352
- }
2353
- )
2354
- ] })
2355
- ]
2356
- }
2357
- ),
2358
- /* @__PURE__ */ jsx("hr", {}),
2359
- /* @__PURE__ */ jsx("div", { className: `${styles.site_lists} flex_row`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2360
- /* @__PURE__ */ jsx(
2361
- Image,
2362
- {
2363
- src: `https://images.axos.com/o9ov1v03uwqk/jpqd1KnknpG6gVaYg04Bl/a55d179434815dc4029ee413d8d7a703/nav-submenu-auto-icon.webp`,
2364
- alt: "",
2365
- width: 20,
2366
- height: 20
2367
- }
2368
- ),
2369
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2370
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2371
- Link,
2372
- {
2373
- href: "/partners/dealer-services",
2374
- role: "heading",
2375
- children: "Dealer Services"
2376
- }
2377
- ) }),
2378
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/partners/dealer-services/contact", children: "Request More Information" }) })
2379
- ] })
2380
- ] }) })
2381
- ]
2382
- }
2383
- )
2384
- ] }) })
2385
- }
2386
- )
2387
- ] }) }) }) : null;
2552
+ ] }) })
2553
+ ]
2554
+ }
2555
+ )
2556
+ ] }) })
2557
+ }
2558
+ )
2559
+ ] })
2560
+ ] }) }) }) }) : null;
2388
2561
  }
2389
2562
  export {
2390
2563
  SubNavBar as default