@axos-web-dev/shared-components 0.0.111 → 0.0.113

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 (52) hide show
  1. package/dist/ATMLocator/ATMLocator.js +1 -0
  2. package/dist/Button/Button.js +4 -1
  3. package/dist/Calculators/Calculator.js +1 -0
  4. package/dist/Carousel/index.js +1 -0
  5. package/dist/Chevron/index.js +1 -0
  6. package/dist/Comparison/Comparison.js +1 -0
  7. package/dist/FaqAccordion/index.js +1 -0
  8. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +95 -72
  9. package/dist/Forms/ContactUsBusiness.js +1 -0
  10. package/dist/Forms/ContactUsNMLSId.js +1 -0
  11. package/dist/Forms/EmailOnly.js +1 -0
  12. package/dist/Forms/ScheduleCall.js +4 -1
  13. package/dist/Forms/SuccesForm.js +1 -0
  14. package/dist/HeroBanner/HeroBanner.css.d.ts +1 -0
  15. package/dist/Hyperlink/index.js +1 -0
  16. package/dist/ImageBillboard/ImageBillboard.css.d.ts +17 -0
  17. package/dist/ImageBillboard/ImageBillboardSet.js +1 -2
  18. package/dist/ImageLink/ImageLink.js +1 -0
  19. package/dist/ImageLink/ImageLinkSet.js +1 -0
  20. package/dist/ImageLink/index.js +1 -0
  21. package/dist/Input/DatePicker.css.d.ts +1 -0
  22. package/dist/Input/DatePicker.css.js +6 -0
  23. package/dist/Input/Datepicker.d.ts +3 -0
  24. package/dist/Input/Datepicker.js +47 -0
  25. package/dist/Input/InputDate.css.d.ts +6 -0
  26. package/dist/Input/InputDate.css.js +15 -0
  27. package/dist/Input/InputDate.d.ts +3 -0
  28. package/dist/Input/InputDate.js +47 -0
  29. package/dist/Input/InputProps.d.ts +6 -0
  30. package/dist/Insight/Featured/CategorySelector.js +1 -0
  31. package/dist/Insight/Featured/Featured.js +1 -0
  32. package/dist/Modal/Modal.js +1 -0
  33. package/dist/NavigationMenu/AxosBank/NavData.d.ts +2 -36
  34. package/dist/NavigationMenu/AxosBank/NavData.js +133 -33
  35. package/dist/NavigationMenu/AxosBank/SubNavBar.js +369 -166
  36. package/dist/NavigationMenu/AxosBank/index.js +268 -28
  37. package/dist/NavigationMenu/AxosClearing/NavBar.module.js +49 -31
  38. package/dist/NavigationMenu/AxosClearing/NavData.js +1 -1
  39. package/dist/NavigationMenu/AxosClearing/index.js +119 -12
  40. package/dist/SecondaryFooter/SecondaryFooter.css.js +2 -0
  41. package/dist/SetContainer/SetContainer.js +1 -0
  42. package/dist/assets/HeroBanner/HeroBanner.css +1 -0
  43. package/dist/assets/ImageBillboard/ImageBillboard.css +12 -6
  44. package/dist/assets/Input/DatePicker.css +95 -0
  45. package/dist/assets/Input/InputDate.css +39 -0
  46. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +133 -82
  47. package/dist/assets/SecondaryFooter/SecondaryFooter.css +1 -1
  48. package/dist/assets/themes/axos.css +1 -0
  49. package/dist/assets/themes/premier.css +1 -0
  50. package/dist/themes/axos.css.d.ts +5 -0
  51. package/dist/themes/axos.css.js +1 -1
  52. package/package.json +118 -118
@@ -513,7 +513,9 @@ function SubNavBar() {
513
513
  children: /* @__PURE__ */ jsx(
514
514
  Link,
515
515
  {
516
- href: `/personal/checking`,
516
+ href: findMoreAxosDomains(
517
+ "{AXOSBANK}/personal/bank/checking-accounts"
518
+ ),
517
519
  "aria-label": "learn more about available checking accounts",
518
520
  className: "text_center bg_white ",
519
521
  children: "Learn More"
@@ -549,7 +551,15 @@ function SubNavBar() {
549
551
  "div",
550
552
  {
551
553
  className: `${styles.headline_cta} ${styles.ml_8}`,
552
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
554
+ children: /* @__PURE__ */ jsx(
555
+ Link,
556
+ {
557
+ href: findMoreAxosDomains(
558
+ "{AXOSBANK}/personal/support"
559
+ ),
560
+ children: "Help & Support"
561
+ }
562
+ )
553
563
  }
554
564
  )
555
565
  ] })
@@ -572,7 +582,9 @@ function SubNavBar() {
572
582
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
573
583
  Link,
574
584
  {
575
- href: "/personal/checking",
585
+ href: findMoreAxosDomains(
586
+ "{AXOSBANK}/personal/bank/checking-accounts"
587
+ ),
576
588
  role: "heading",
577
589
  children: "Checking"
578
590
  }
@@ -580,35 +592,45 @@ function SubNavBar() {
580
592
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
581
593
  Link,
582
594
  {
583
- href: "/personal/checking/rewards-checking",
595
+ href: findMoreAxosDomains(
596
+ "{AXOSBANK}/personal/bank/checking-accounts/rewards-checking"
597
+ ),
584
598
  children: "Rewards Checking"
585
599
  }
586
600
  ) }),
587
601
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
588
602
  Link,
589
603
  {
590
- href: "/personal/checking/essential-checking",
604
+ href: findMoreAxosDomains(
605
+ "{AXOSBANK}/personal/bank/checking-accounts/essential-checking"
606
+ ),
591
607
  children: "Essential Checking"
592
608
  }
593
609
  ) }),
594
610
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
595
611
  Link,
596
612
  {
597
- href: "/personal/checking/first-checking",
613
+ href: findMoreAxosDomains(
614
+ "{AXOSBANK}/personal/bank/checking-accounts/first-checking"
615
+ ),
598
616
  children: "First Checking"
599
617
  }
600
618
  ) }),
601
619
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
602
620
  Link,
603
621
  {
604
- href: "/personal/checking/cashback-checking",
622
+ href: findMoreAxosDomains(
623
+ "{AXOSBANK}/personal/bank/checking-accounts/cashback-checking"
624
+ ),
605
625
  children: "CashBack Checking"
606
626
  }
607
627
  ) }),
608
628
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
609
629
  Link,
610
630
  {
611
- href: "/personal/checking/golden-checking",
631
+ href: findMoreAxosDomains(
632
+ "{AXOSBANK}/personal/bank/checking-accounts/golden-checking"
633
+ ),
612
634
  children: "Golden Checking"
613
635
  }
614
636
  ) })
@@ -625,22 +647,43 @@ function SubNavBar() {
625
647
  }
626
648
  ),
627
649
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
628
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings", role: "heading", children: "Savings" }) }),
629
650
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
630
651
  Link,
631
652
  {
632
- href: "/personal/savings/high-yield-savings",
653
+ href: findMoreAxosDomains(
654
+ "{AXOSBANK}/personal/bank/savings-accounts"
655
+ ),
656
+ role: "heading",
657
+ children: "Savings"
658
+ }
659
+ ) }),
660
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
661
+ Link,
662
+ {
663
+ href: findMoreAxosDomains(
664
+ "{AXOSBANK}/personal/bank/savings-accounts/high-yield-savings"
665
+ ),
633
666
  children: "High Yield Savings"
634
667
  }
635
668
  ) }),
636
669
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
637
670
  Link,
638
671
  {
639
- href: "/personal/savings/high-yield-money-market",
672
+ href: findMoreAxosDomains(
673
+ "{AXOSBANK}/personal/bank/savings-accounts/high-yield-money-markets"
674
+ ),
640
675
  children: "High Yield Money Market"
641
676
  }
642
677
  ) }),
643
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings/first-savings", children: "First Savings" }) })
678
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
679
+ Link,
680
+ {
681
+ href: findMoreAxosDomains(
682
+ "{AXOSBANK}/personal/bank/savings-accounts/first-savings"
683
+ ),
684
+ children: "First Savings"
685
+ }
686
+ ) })
644
687
  ] })
645
688
  ] }),
646
689
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -653,7 +696,16 @@ function SubNavBar() {
653
696
  height: 20
654
697
  }
655
698
  ),
656
- /* @__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" }) }) })
699
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
700
+ Link,
701
+ {
702
+ href: findMoreAxosDomains(
703
+ "{AXOSBANK}/personal/bank/savings-accounts/certificates-of-deposit"
704
+ ),
705
+ role: "heading",
706
+ children: "Certificates of Deposit"
707
+ }
708
+ ) }) })
657
709
  ] }),
658
710
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
659
711
  /* @__PURE__ */ jsx(
@@ -666,19 +718,40 @@ function SubNavBar() {
666
718
  }
667
719
  ),
668
720
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
669
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier", role: "heading", children: "Premier" }) }),
670
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/premier/privateclient", children: "Private Client" }) }),
671
721
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
672
722
  Link,
673
723
  {
674
- href: "/personal/premier/insureguardplus",
724
+ href: findMoreAxosDomains(
725
+ "{AXOSBANK}/personal/bank/premier"
726
+ ),
727
+ role: "heading",
728
+ children: "Premier"
729
+ }
730
+ ) }),
731
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
732
+ Link,
733
+ {
734
+ href: findMoreAxosDomains(
735
+ "{AXOSBANK}/personal/bank/premier/private-client-banking"
736
+ ),
737
+ children: "Private Client"
738
+ }
739
+ ) }),
740
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
741
+ Link,
742
+ {
743
+ href: findMoreAxosDomains(
744
+ "{AXOSBANK}/personal/bank/premier/insureguard-savings"
745
+ ),
675
746
  children: "InsureGuard+"
676
747
  }
677
748
  ) }),
678
749
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
679
750
  Link,
680
751
  {
681
- href: "/personal/premier/worldcheckingandsavings",
752
+ href: findMoreAxosDomains(
753
+ "{AXOSBANK}/personal/bank/premier/world-checking-and-savings"
754
+ ),
682
755
  children: "World Checking & Savings"
683
756
  }
684
757
  ) })
@@ -694,7 +767,16 @@ function SubNavBar() {
694
767
  height: 20
695
768
  }
696
769
  ),
697
- /* @__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" }) }) })
770
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
771
+ Link,
772
+ {
773
+ href: findMoreAxosDomains(
774
+ "{AXOSBANK}/personal/support/atm-locator"
775
+ ),
776
+ role: "heading",
777
+ children: "ATM Locator"
778
+ }
779
+ ) }) })
698
780
  ] }),
699
781
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
700
782
  /* @__PURE__ */ jsx(
@@ -706,7 +788,16 @@ function SubNavBar() {
706
788
  height: 20
707
789
  }
708
790
  ),
709
- /* @__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" }) }) })
791
+ /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
792
+ Link,
793
+ {
794
+ href: findMoreAxosDomains(
795
+ "{AXOSBANK/refer-a-friend}"
796
+ ),
797
+ role: "heading",
798
+ children: "Refer-a-Friend"
799
+ }
800
+ ) }) })
710
801
  ] })
711
802
  ] })
712
803
  ]
@@ -757,7 +848,9 @@ function SubNavBar() {
757
848
  children: /* @__PURE__ */ jsx(
758
849
  Link,
759
850
  {
760
- href: `/personal/mortgages`,
851
+ href: findMoreAxosDomains(
852
+ "{AXOSBANK}/personal/borrow/mortgages"
853
+ ),
761
854
  "aria-label": "get a mortgage quote",
762
855
  className: "text_center bg_white ",
763
856
  children: "Get a Quote"
@@ -793,7 +886,15 @@ function SubNavBar() {
793
886
  "div",
794
887
  {
795
888
  className: `${styles.headline_cta} ${styles.ml_8}`,
796
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
889
+ children: /* @__PURE__ */ jsx(
890
+ Link,
891
+ {
892
+ href: findMoreAxosDomains(
893
+ "{AXOSBANK}/personal/support"
894
+ ),
895
+ children: "Help & Support"
896
+ }
897
+ )
797
898
  }
798
899
  )
799
900
  ] })
@@ -816,7 +917,9 @@ function SubNavBar() {
816
917
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
817
918
  Link,
818
919
  {
819
- href: "/personal/mortgages",
920
+ href: findMoreAxosDomains(
921
+ "{AXOSBANK}/personal/borrow/mortgages"
922
+ ),
820
923
  role: "heading",
821
924
  children: "Mortgage"
822
925
  }
@@ -824,19 +927,39 @@ function SubNavBar() {
824
927
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
825
928
  Link,
826
929
  {
827
- href: "/personal/mortgages/buying-a-home",
930
+ href: findMoreAxosDomains(
931
+ "{AXOSBANK}/personal/borrow/mortgages/buying-a-home"
932
+ ),
933
+ children: "Mortgage Refinance"
934
+ }
935
+ ) }),
936
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
937
+ Link,
938
+ {
939
+ href: findMoreAxosDomains(
940
+ "{AXOSBANK}/personal/borrow/mortgages/refinance"
941
+ ),
828
942
  children: "Mortgage Refinance"
829
943
  }
830
944
  ) }),
831
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/refinance", children: "Mortgage Refinance" }) }),
832
945
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
833
946
  Link,
834
947
  {
835
- href: "/personal/mortgages/buying-a-home/get-pre-qualifies",
948
+ href: findMoreAxosDomains(
949
+ "{AXOSBANK}/personal/borrow/mortgages/buying-a-home/get-pre-qualified"
950
+ ),
836
951
  children: "Get Pre-qualified"
837
952
  }
838
953
  ) }),
839
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages", children: "Get a Rate Quote" }) }),
954
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
955
+ Link,
956
+ {
957
+ href: findMoreAxosDomains(
958
+ "{AXOSBANK}/personal/borrow/mortgages"
959
+ ),
960
+ children: "Get a Rate Quote"
961
+ }
962
+ ) }),
840
963
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
841
964
  Link,
842
965
  {
@@ -847,25 +970,30 @@ function SubNavBar() {
847
970
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
848
971
  Link,
849
972
  {
850
- href: "/personal/mortgages/mortgage-options",
973
+ href: findMoreAxosDomains(
974
+ "{AXOSBANK}/personal/borrow/mortgages/mortgage-options"
975
+ ),
851
976
  children: "Mortgage Options"
852
977
  }
853
978
  ) }),
854
979
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
855
980
  Link,
856
981
  {
857
- href: "/personal/mortgages/mortgage-support",
982
+ href: findMoreAxosDomains(
983
+ "{AXOSBANK}/personal/borrow/mortgages/buying-a-home/process"
984
+ ),
858
985
  children: "Mortgage Services"
859
986
  }
860
987
  ) }),
861
988
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
862
989
  Link,
863
990
  {
864
- href: "/customer-Support/personal-support/manage-my-loan",
991
+ href: findMoreAxosDomains(
992
+ "{AXOSBANK}/personal/support/manage-my-loan"
993
+ ),
865
994
  children: "Make a Payment"
866
995
  }
867
- ) }),
868
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/rate-watch", children: "Rate Watch" }) })
996
+ ) })
869
997
  ] })
870
998
  ] }),
871
999
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -882,12 +1010,22 @@ function SubNavBar() {
882
1010
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
883
1011
  Link,
884
1012
  {
885
- href: "/personal/personal-loans",
1013
+ href: findMoreAxosDomains(
1014
+ "{AXOSBANK}/personal/borrow/personal-loans"
1015
+ ),
886
1016
  role: "heading",
887
1017
  children: "Personal Loans"
888
1018
  }
889
1019
  ) }),
890
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/personal-loans", children: "Learn More" }) }),
1020
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1021
+ Link,
1022
+ {
1023
+ href: findMoreAxosDomains(
1024
+ "{AXOSBANK}/personal/borrow/personal-loans"
1025
+ ),
1026
+ children: "Learn More"
1027
+ }
1028
+ ) }),
891
1029
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
892
1030
  Link,
893
1031
  {
@@ -898,28 +1036,36 @@ function SubNavBar() {
898
1036
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
899
1037
  Link,
900
1038
  {
901
- href: "/customer-support/personal-support/manage-my-loan",
1039
+ href: findMoreAxosDomains(
1040
+ "{AXOSBANK}/personal/support/manage-my-loan"
1041
+ ),
902
1042
  children: "Make a Payment"
903
1043
  }
904
1044
  ) }),
905
1045
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
906
1046
  Link,
907
1047
  {
908
- href: "/personal/personal-loans/debt-consolidation-loans",
1048
+ href: findMoreAxosDomains(
1049
+ "{AXOSBANK}/personal/borrow/personal-loans/debt-consolidation"
1050
+ ),
909
1051
  children: "Debt Consolidation Loans"
910
1052
  }
911
1053
  ) }),
912
1054
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
913
1055
  Link,
914
1056
  {
915
- href: "/personal/personal-loans/home-improvement-loans",
1057
+ href: findMoreAxosDomains(
1058
+ "{AXOSBANK}/personal/borrow/personal-loans/home-improvements"
1059
+ ),
916
1060
  children: "Home Improvement Loans"
917
1061
  }
918
1062
  ) }),
919
1063
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
920
1064
  Link,
921
1065
  {
922
- href: "/personal/personal-loans/major-purchases-loans",
1066
+ href: findMoreAxosDomains(
1067
+ "{AXOSBANK}/personal/borrow/personal-loans/major-purchases"
1068
+ ),
923
1069
  children: "Major Purchases Loans"
924
1070
  }
925
1071
  ) })
@@ -939,7 +1085,9 @@ function SubNavBar() {
939
1085
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
940
1086
  Link,
941
1087
  {
942
- href: "/personal/auto-loan",
1088
+ href: findMoreAxosDomains(
1089
+ "{AXOSBANK}/personal/borrow/auto-loans"
1090
+ ),
943
1091
  role: "heading",
944
1092
  children: "Auto Loans"
945
1093
  }
@@ -947,22 +1095,36 @@ function SubNavBar() {
947
1095
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
948
1096
  Link,
949
1097
  {
950
- href: "/personal/auto-loan/purchase-a-vehicle",
1098
+ href: findMoreAxosDomains(
1099
+ "{AXOSBANK}/personal/borrow/auto-loans/purchase-a-vehicle"
1100
+ ),
951
1101
  children: "Auto Purchase Loans"
952
1102
  }
953
1103
  ) }),
954
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/auto-loan/refincance", children: "Auto Refinance Loans" }) }),
955
1104
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
956
1105
  Link,
957
1106
  {
958
- href: "/tools/calculators/auto-loan-calculator",
1107
+ href: findMoreAxosDomains(
1108
+ "{AXOSBANK}/personal/borrow/auto-loans/refinance"
1109
+ ),
1110
+ children: "Auto Refinance Loans"
1111
+ }
1112
+ ) }),
1113
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1114
+ Link,
1115
+ {
1116
+ href: findMoreAxosDomains(
1117
+ "{AXOSBANK}/tools/calculators/auto-loan-calculator"
1118
+ ),
959
1119
  children: "Auto Payment Calculator"
960
1120
  }
961
1121
  ) }),
962
1122
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
963
1123
  Link,
964
1124
  {
965
- href: "/customer-support/personal-support/manage-my-loan",
1125
+ href: findMoreAxosDomains(
1126
+ "{AXOSBANK}/personal/support/manage-my-loan"
1127
+ ),
966
1128
  children: "Manage My Loan"
967
1129
  }
968
1130
  ) })
@@ -1085,7 +1247,15 @@ function SubNavBar() {
1085
1247
  "div",
1086
1248
  {
1087
1249
  className: `${styles.headline_cta} ${styles.ml_8}`,
1088
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1250
+ children: /* @__PURE__ */ jsx(
1251
+ Link,
1252
+ {
1253
+ href: findMoreAxosDomains(
1254
+ "{AXOS}/invest/support"
1255
+ ),
1256
+ children: "Help & Support"
1257
+ }
1258
+ )
1089
1259
  }
1090
1260
  )
1091
1261
  ] })
@@ -1259,7 +1429,7 @@ function SubNavBar() {
1259
1429
  Link,
1260
1430
  {
1261
1431
  href: findMoreAxosDomains(
1262
- "{AXOS}/invest/blog"
1432
+ "{AXOS}/invest/insights"
1263
1433
  ),
1264
1434
  role: "heading",
1265
1435
  children: "Blog"
@@ -1311,9 +1481,11 @@ function SubNavBar() {
1311
1481
  children: /* @__PURE__ */ jsx(
1312
1482
  Link,
1313
1483
  {
1314
- href: `/tools/payment-apps/mobile-app`,
1484
+ href: findMoreAxosDomains(
1485
+ "{AXOSBANK}/tools/payment-apps/mobile-app"
1486
+ ),
1315
1487
  "aria-label": "download the mobile app",
1316
- className: "text_center bg_white ",
1488
+ className: "text_center bg_white",
1317
1489
  children: "Get the App"
1318
1490
  }
1319
1491
  )
@@ -1347,7 +1519,15 @@ function SubNavBar() {
1347
1519
  "div",
1348
1520
  {
1349
1521
  className: `${styles.headline_cta} ${styles.ml_8}`,
1350
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1522
+ children: /* @__PURE__ */ jsx(
1523
+ Link,
1524
+ {
1525
+ href: findMoreAxosDomains(
1526
+ "{AXOSBANK}/personal/support"
1527
+ ),
1528
+ children: "Help & Support"
1529
+ }
1530
+ )
1351
1531
  }
1352
1532
  )
1353
1533
  ] })
@@ -1370,13 +1550,31 @@ function SubNavBar() {
1370
1550
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1371
1551
  Link,
1372
1552
  {
1373
- href: "/tools/payment-apps/mobile-app",
1553
+ href: findMoreAxosDomains(
1554
+ "{AXOSBANK}/tools/payment-apps/mobile-app"
1555
+ ),
1374
1556
  role: "heading",
1375
1557
  children: "Axos Mobile App"
1376
1558
  }
1377
1559
  ) }),
1378
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Download the App" }) }),
1379
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/payment-apps/mobile-app", children: "Mobile App Features" }) })
1560
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1561
+ Link,
1562
+ {
1563
+ href: findMoreAxosDomains(
1564
+ "{AXOSBANK}/tools/payment-apps/mobile-app"
1565
+ ),
1566
+ children: "Download the App"
1567
+ }
1568
+ ) }),
1569
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1570
+ Link,
1571
+ {
1572
+ href: findMoreAxosDomains(
1573
+ "{AXOSBANK}/tools/payment-apps/mobile-app"
1574
+ ),
1575
+ children: "Mobile App Features"
1576
+ }
1577
+ ) })
1380
1578
  ] })
1381
1579
  ] }),
1382
1580
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -1390,17 +1588,48 @@ function SubNavBar() {
1390
1588
  }
1391
1589
  ),
1392
1590
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1393
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", role: "heading", children: "Financial Tools" }) }),
1394
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/calculators", children: "Calculators" }) }),
1395
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools/credit-score-monitoring", children: "Credit Score Monitoring" }) }),
1396
1591
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1397
1592
  Link,
1398
1593
  {
1399
- href: "/personal/personal-finance-manager",
1594
+ href: findMoreAxosDomains("{AXOSBANK}/tools"),
1595
+ role: "heading",
1596
+ children: "Financial Tools"
1597
+ }
1598
+ ) }),
1599
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1600
+ Link,
1601
+ {
1602
+ href: findMoreAxosDomains(
1603
+ "{AXOSBANK}/tools/calculators"
1604
+ ),
1605
+ children: "Calculators"
1606
+ }
1607
+ ) }),
1608
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1609
+ Link,
1610
+ {
1611
+ href: findMoreAxosDomains(
1612
+ "{AXOSBANK}/tools/credit-score-monitoring"
1613
+ ),
1614
+ children: "Credit Score Monitoring"
1615
+ }
1616
+ ) }),
1617
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1618
+ Link,
1619
+ {
1620
+ href: findMoreAxosDomains(
1621
+ "{AXOSBANK}/personal/personal-finance-manager"
1622
+ ),
1400
1623
  children: "Personal Finance Manager"
1401
1624
  }
1402
1625
  ) }),
1403
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/tools", children: "Additional Tools" }) })
1626
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1627
+ Link,
1628
+ {
1629
+ href: findMoreAxosDomains("{AXOSBANK}/tools"),
1630
+ children: "Additional Tools"
1631
+ }
1632
+ ) })
1404
1633
  ] })
1405
1634
  ] }),
1406
1635
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -1414,18 +1643,43 @@ function SubNavBar() {
1414
1643
  }
1415
1644
  ),
1416
1645
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1417
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", role: "heading", children: "Education & Insights" }) }),
1418
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog", children: "Personal Finance" }) }),
1419
1646
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1420
1647
  Link,
1421
1648
  {
1422
1649
  href: findMoreAxosDomains(
1423
- "{AXOS}/invest/blog"
1650
+ "{AXOSBANK}/insights"
1651
+ ),
1652
+ role: "heading",
1653
+ children: "Education & Insights"
1654
+ }
1655
+ ) }),
1656
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1657
+ Link,
1658
+ {
1659
+ href: findMoreAxosDomains(
1660
+ "{AXOSBANK}/insights/finance"
1661
+ ),
1662
+ children: "Personal Finance"
1663
+ }
1664
+ ) }),
1665
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1666
+ Link,
1667
+ {
1668
+ href: findMoreAxosDomains(
1669
+ "{AXOS}/invest/insights"
1424
1670
  ),
1425
1671
  children: "Investing Insight"
1426
1672
  }
1427
1673
  ) }),
1428
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog/categories/podcast", children: "Investing Podcase" }) })
1674
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1675
+ Link,
1676
+ {
1677
+ href: findMoreAxosDomains(
1678
+ "{AXOS}/invest/insights/investing-evolved"
1679
+ ),
1680
+ children: "Investing Podcase"
1681
+ }
1682
+ ) })
1429
1683
  ] })
1430
1684
  ] })
1431
1685
  ] })
@@ -1529,7 +1783,7 @@ function SubNavBar() {
1529
1783
  "div",
1530
1784
  {
1531
1785
  className: `${styles.headline_cta} ${styles.ml_8}`,
1532
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1786
+ children: /* @__PURE__ */ jsx(Link, { href: "/business/resources", children: "Help & Support" })
1533
1787
  }
1534
1788
  )
1535
1789
  ] })
@@ -1552,7 +1806,7 @@ function SubNavBar() {
1552
1806
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1553
1807
  Link,
1554
1808
  {
1555
- href: "/business/small-business-banking/business-checking-compare",
1809
+ href: "/business/business-checking-accounts",
1556
1810
  role: "heading",
1557
1811
  children: "Checking"
1558
1812
  }
@@ -1560,14 +1814,14 @@ function SubNavBar() {
1560
1814
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1561
1815
  Link,
1562
1816
  {
1563
- href: "/business/small-business-banking/business-checking-compare/basic-business-checking",
1817
+ href: "/business/business-checking-accounts/basic-business-checking",
1564
1818
  children: "Basic Business Checking"
1565
1819
  }
1566
1820
  ) }),
1567
1821
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1568
1822
  Link,
1569
1823
  {
1570
- href: "/business/small-business-banking/business-checking-compare/business-interest-checking",
1824
+ href: "/business/business-checking-accounts/business-interest-checking",
1571
1825
  children: "Business Interest Checking"
1572
1826
  }
1573
1827
  ) })
@@ -1584,49 +1838,36 @@ function SubNavBar() {
1584
1838
  }
1585
1839
  ),
1586
1840
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1841
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/savings", role: "heading", children: "Savings" }) }),
1587
1842
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1588
1843
  Link,
1589
1844
  {
1590
- href: "/business/small-business-banking/savings",
1591
- role: "heading",
1592
- children: "Savings"
1593
- }
1594
- ) }),
1595
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1596
- Link,
1597
- {
1598
- href: "/business/small-business-banking/savings/business-money-market-accounts/business-money-market",
1845
+ href: "/business/savings/business-money-market-accounts/business-money-market",
1599
1846
  children: "Business Money Market"
1600
1847
  }
1601
1848
  ) }),
1602
1849
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1603
1850
  Link,
1604
1851
  {
1605
- href: "/business/small-business-banking/savings/business-savings-accounts/business-premium-saving",
1852
+ href: "/business/savings/business-savings-accounts/business-premium-savings",
1606
1853
  children: "Business Premium Savings"
1607
1854
  }
1608
1855
  ) }),
1609
1856
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1610
1857
  Link,
1611
1858
  {
1612
- href: "/business/small-business-banking/savings/business-savings-accounts/business-savings",
1859
+ href: "/business/savings/business-savings-accounts/business-savings",
1613
1860
  children: "Business Savings"
1614
1861
  }
1615
1862
  ) }),
1616
1863
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1617
1864
  Link,
1618
1865
  {
1619
- href: "/business/small-business-banking/savings/business-money-market-accounts/non-profit-money-market",
1866
+ href: "/business/savings/business-money-market-accounts/non-profit-money-market",
1620
1867
  children: "Non-Profit Money Market"
1621
1868
  }
1622
1869
  ) }),
1623
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1624
- Link,
1625
- {
1626
- href: "/business/small-business-banking/savings/business-cds",
1627
- children: "Business CDs"
1628
- }
1629
- ) })
1870
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/savings/business-cds", children: "Business CDs" }) })
1630
1871
  ] })
1631
1872
  ] }),
1632
1873
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -1643,7 +1884,7 @@ function SubNavBar() {
1643
1884
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1644
1885
  Link,
1645
1886
  {
1646
- href: "/business/small-business-banking/services",
1887
+ href: "/business/services",
1647
1888
  role: "heading",
1648
1889
  children: "Services"
1649
1890
  }
@@ -1651,35 +1892,29 @@ function SubNavBar() {
1651
1892
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1652
1893
  Link,
1653
1894
  {
1654
- href: "/business/small-business-banking/services/merchant-services",
1895
+ href: "/business/services/merchant-services",
1655
1896
  children: "Merchant Services"
1656
1897
  }
1657
1898
  ) }),
1658
1899
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1659
1900
  Link,
1660
1901
  {
1661
- href: "/business/small-business-banking/services/payroll-services",
1902
+ href: "/business/services/payroll-services",
1662
1903
  children: "Payroll Services"
1663
1904
  }
1664
1905
  ) }),
1906
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/services/sba-loans", children: "SBA Loans" }) }),
1665
1907
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1666
1908
  Link,
1667
1909
  {
1668
- href: "/business/small-business-banking/services/sba-loans",
1669
- children: "SBA Loans"
1670
- }
1671
- ) }),
1672
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1673
- Link,
1674
- {
1675
- href: "/business/small-business-banking/services/treasury-management",
1910
+ href: "/business/services/treasury-management",
1676
1911
  children: "Treasury Management"
1677
1912
  }
1678
1913
  ) }),
1679
1914
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1680
1915
  Link,
1681
1916
  {
1682
- href: "/business/small-business-banking/services/insured-cash-sweep",
1917
+ href: "/business/services/insured-cash-sweep",
1683
1918
  children: "Insured Cash Sweep"
1684
1919
  }
1685
1920
  ) })
@@ -1699,20 +1934,14 @@ function SubNavBar() {
1699
1934
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1700
1935
  Link,
1701
1936
  {
1702
- href: "/customer-support/business-support",
1937
+ href: "/business/resources",
1703
1938
  role: "heading",
1704
1939
  children: "Other Resources"
1705
1940
  }
1706
1941
  ) }),
1707
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1708
- Link,
1709
- {
1710
- href: "/customer-support/business-support/faq",
1711
- children: "FAQ"
1712
- }
1713
- ) }),
1942
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/resources/faqs", children: "FAQ" }) }),
1714
1943
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/business-rates", children: "Rates" }) }),
1715
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/atm-locator", children: "ATM Locator" }) }),
1944
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/resources/atm-locator", children: "ATM Locator" }) }),
1716
1945
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1717
1946
  Link,
1718
1947
  {
@@ -1788,7 +2017,7 @@ function SubNavBar() {
1788
2017
  "div",
1789
2018
  {
1790
2019
  className: `${styles.headline_cta} ${styles.ml_8}`,
1791
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
2020
+ children: /* @__PURE__ */ jsx(Link, { href: "/business/resources", children: "Help & Support" })
1792
2021
  }
1793
2022
  )
1794
2023
  ] })
@@ -1808,53 +2037,46 @@ function SubNavBar() {
1808
2037
  }
1809
2038
  ),
1810
2039
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2040
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial", role: "heading", children: "Solutions By Industry" }) }),
1811
2041
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1812
2042
  Link,
1813
2043
  {
1814
- href: "/business/commercial-banking",
1815
- role: "heading",
1816
- children: "Solutions By Industry"
1817
- }
1818
- ) }),
1819
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1820
- Link,
1821
- {
1822
- href: "/business/commercial-banking/third-party-payment-processors",
2044
+ href: "/commercial/industry-specializations/third-party-payment-processors",
1823
2045
  children: "Third Party Payment Processors"
1824
2046
  }
1825
2047
  ) }),
1826
2048
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1827
2049
  Link,
1828
2050
  {
1829
- href: "/business/commercial-banking/hoa-banking-and-lending",
2051
+ href: "/commercial/banking/hoa-banking-and-lending",
1830
2052
  children: "HOA Banking & Lending"
1831
2053
  }
1832
2054
  ) }),
1833
2055
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1834
2056
  Link,
1835
2057
  {
1836
- href: "/business/commercial-banking/hoas-property-management",
2058
+ href: "/commercial/industry-specializations/hoa-property-management",
1837
2059
  children: "HOAs & Property Management"
1838
2060
  }
1839
2061
  ) }),
1840
2062
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1841
2063
  Link,
1842
2064
  {
1843
- href: "/business/commercial-banking/1031-exchange-qualified-intermediaries",
2065
+ href: "/commercial/industry-specializations/1031-exchange-qualified-intermediaries",
1844
2066
  children: "1031 Exchange Qualified Intermediaries"
1845
2067
  }
1846
2068
  ) }),
1847
2069
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1848
2070
  Link,
1849
2071
  {
1850
- href: "/business/commercial-banking/title-and-escrow",
2072
+ href: "/commercial/industry-specializations/title-and-escrow",
1851
2073
  children: "Title & Escrow"
1852
2074
  }
1853
2075
  ) }),
1854
2076
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1855
2077
  Link,
1856
2078
  {
1857
- href: "/business/commercial-banking/global-fiduciary-banking",
2079
+ href: "/commercial/industry-specializations/global-fiduciary-banking",
1858
2080
  children: "Global Fiduciary Banking"
1859
2081
  }
1860
2082
  ) }),
@@ -1868,14 +2090,14 @@ function SubNavBar() {
1868
2090
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1869
2091
  Link,
1870
2092
  {
1871
- href: "/business/commercial-banking/business-management-banking",
2093
+ href: "/commercial/banking/business-management-banking",
1872
2094
  children: "Business Management Banking"
1873
2095
  }
1874
2096
  ) }),
1875
2097
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1876
2098
  Link,
1877
2099
  {
1878
- href: "/business/commercial-banking/hedge-funds-and-alternative-fund-banking-solutions",
2100
+ href: "/commercial/banking/hedge-funds-and-alternative-funds",
1879
2101
  children: "Hedge Funds & Alternative Fund Banking Solutions"
1880
2102
  }
1881
2103
  ) })
@@ -1895,7 +2117,7 @@ function SubNavBar() {
1895
2117
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1896
2118
  Link,
1897
2119
  {
1898
- href: "/business/commercial-banking",
2120
+ href: "/commercial/banking",
1899
2121
  role: "heading",
1900
2122
  children: "Services"
1901
2123
  }
@@ -1903,21 +2125,21 @@ function SubNavBar() {
1903
2125
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1904
2126
  Link,
1905
2127
  {
1906
- href: "/business/commercial-banking/analyzed-checking",
2128
+ href: "/commercial/banking/analyzed-business-checking",
1907
2129
  children: "Analyzed Business Checking"
1908
2130
  }
1909
2131
  ) }),
1910
2132
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1911
2133
  Link,
1912
2134
  {
1913
- href: "/business/business-merchant-services",
2135
+ href: "/commercial/banking/merchant-services",
1914
2136
  children: "Merchant Services"
1915
2137
  }
1916
2138
  ) }),
1917
2139
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1918
2140
  Link,
1919
2141
  {
1920
- href: "/business/commercial-banking/treasury-management",
2142
+ href: "/commercial/global-treasury-management",
1921
2143
  children: "Treasury Management"
1922
2144
  }
1923
2145
  ) }),
@@ -1949,18 +2171,12 @@ function SubNavBar() {
1949
2171
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1950
2172
  Link,
1951
2173
  {
1952
- href: "/customer-support/business-support",
2174
+ href: "/business/resources",
1953
2175
  role: "heading",
1954
2176
  children: "Other Resources"
1955
2177
  }
1956
2178
  ) }),
1957
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1958
- Link,
1959
- {
1960
- href: "/business/commercial-banking/calculators",
1961
- children: "Calculators"
1962
- }
1963
- ) })
2179
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial/calculators", children: "Calculators" }) })
1964
2180
  ] })
1965
2181
  ] })
1966
2182
  ] })
@@ -2029,7 +2245,7 @@ function SubNavBar() {
2029
2245
  "div",
2030
2246
  {
2031
2247
  className: `${styles.headline_cta} ${styles.ml_8}`,
2032
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
2248
+ children: /* @__PURE__ */ jsx(Link, { href: "/business/resources", children: "Help & Support" })
2033
2249
  }
2034
2250
  )
2035
2251
  ] })
@@ -2052,7 +2268,7 @@ function SubNavBar() {
2052
2268
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2053
2269
  Link,
2054
2270
  {
2055
- href: "/business/commercial-lending",
2271
+ href: "/commercial/lending",
2056
2272
  role: "heading",
2057
2273
  children: "Credit and Financial"
2058
2274
  }
@@ -2060,21 +2276,21 @@ function SubNavBar() {
2060
2276
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2061
2277
  Link,
2062
2278
  {
2063
- href: "/business/commercial-lending/commercial-lines-of-credit",
2279
+ href: "/commercial/lending/commercial-loans-and-lines-of-credit",
2064
2280
  children: "Commercial Lines of Credit"
2065
2281
  }
2066
2282
  ) }),
2067
2283
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2068
2284
  Link,
2069
2285
  {
2070
- href: "/business/commercial-lending/commercial-term-loans",
2286
+ href: "/commercial/lending/commercial-term-loans",
2071
2287
  children: "Comnmercial Term Loans"
2072
2288
  }
2073
2289
  ) }),
2074
2290
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2075
2291
  Link,
2076
2292
  {
2077
- href: "/business/commercial-lending/equipment-finance",
2293
+ href: "/commercial/lending/equipment-finance",
2078
2294
  children: "Equipment Finance"
2079
2295
  }
2080
2296
  ) })
@@ -2094,7 +2310,7 @@ function SubNavBar() {
2094
2310
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2095
2311
  Link,
2096
2312
  {
2097
- href: "/business/commercial-lending",
2313
+ href: "/commercial/lending",
2098
2314
  role: "heading",
2099
2315
  children: "Commercial Lending"
2100
2316
  }
@@ -2102,42 +2318,36 @@ function SubNavBar() {
2102
2318
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2103
2319
  Link,
2104
2320
  {
2105
- href: "/business/commercial-lending/Commercial-Term-Loans",
2321
+ href: "/commercial/lending/commercial-term-loans",
2106
2322
  children: "Commercial Real Estate Bridge & Construction Lending"
2107
2323
  }
2108
2324
  ) }),
2325
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial/lending/hoa-lending", children: "HOA Lending" }) }),
2109
2326
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2110
2327
  Link,
2111
2328
  {
2112
- href: "/business/commercial-lending/hoa-lending",
2113
- children: "HOA Lending"
2114
- }
2115
- ) }),
2116
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2117
- Link,
2118
- {
2119
- href: "/business/commercial-lending/lender-finance",
2329
+ href: "/commercial/lending/lender-financing",
2120
2330
  children: "Lender Finance"
2121
2331
  }
2122
2332
  ) }),
2123
2333
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2124
2334
  Link,
2125
2335
  {
2126
- href: "/business/commercial-lending/warehouse-lending",
2336
+ href: "/commercial/lending/residential-warehouse-lending",
2127
2337
  children: "Residential Warehouse Lending"
2128
2338
  }
2129
2339
  ) }),
2130
2340
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2131
2341
  Link,
2132
2342
  {
2133
- href: "/business/commercial-lending/small-balance-commercial-real-estate",
2343
+ href: "/commercial/lending/small-balance-commercial-real-estate",
2134
2344
  children: "Small Balance Commercial Real Estate"
2135
2345
  }
2136
2346
  ) }),
2137
2347
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2138
2348
  Link,
2139
2349
  {
2140
- href: "/business/commercial-lending/leveraged-finance",
2350
+ href: "/commercial/lending/leveraged-finance",
2141
2351
  children: "Leveraged Finance"
2142
2352
  }
2143
2353
  ) }),
@@ -2164,19 +2374,19 @@ function SubNavBar() {
2164
2374
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2165
2375
  Link,
2166
2376
  {
2167
- href: "/customer-support/business-support",
2377
+ href: "/business/resources",
2168
2378
  role: "heading",
2169
2379
  children: "Other Resources"
2170
2380
  }
2171
2381
  ) }),
2172
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", children: "Commercial Portal" }) }),
2173
2382
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2174
2383
  Link,
2175
2384
  {
2176
- href: "/business/commercial-banking/calculators",
2177
- children: "Calculators"
2385
+ href: "/commercial/lending/commercial-portal",
2386
+ children: "Commercial Portal"
2178
2387
  }
2179
- ) })
2388
+ ) }),
2389
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial/calculators", children: "Calculators" }) })
2180
2390
  ] })
2181
2391
  ] })
2182
2392
  ] })
@@ -2279,14 +2489,7 @@ function SubNavBar() {
2279
2489
  }
2280
2490
  ),
2281
2491
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2282
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2283
- Link,
2284
- {
2285
- href: "/partners/wholesale-correspondent-portfolio-lending",
2286
- role: "heading",
2287
- children: "Wholesale & Correspondent Lending"
2288
- }
2289
- ) }),
2492
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/partners/support", role: "heading", children: "Wholesale & Correspondent Lending" }) }),
2290
2493
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2291
2494
  Link,
2292
2495
  {
@@ -2382,7 +2585,7 @@ function SubNavBar() {
2382
2585
  "div",
2383
2586
  {
2384
2587
  className: `${styles.headline_cta} ${styles.ml_8}`,
2385
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2588
+ children: /* @__PURE__ */ jsx(Link, { href: "/partners/support", children: "Help & Support" })
2386
2589
  }
2387
2590
  )
2388
2591
  ] })
@@ -2404,7 +2607,7 @@ function SubNavBar() {
2404
2607
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2405
2608
  Link,
2406
2609
  {
2407
- href: "/partners/small-balance-commercial",
2610
+ href: "/business/small-balance-commercial",
2408
2611
  role: "heading",
2409
2612
  children: "Small Balance Commercial"
2410
2613
  }
@@ -2525,7 +2728,7 @@ function SubNavBar() {
2525
2728
  "div",
2526
2729
  {
2527
2730
  className: `${styles.headline_cta} ${styles.ml_8}`,
2528
- children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2731
+ children: /* @__PURE__ */ jsx(Link, { href: "/partners/support", children: "Help & Support" })
2529
2732
  }
2530
2733
  )
2531
2734
  ] })