@axos-web-dev/shared-components 0.0.85 → 0.0.87

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 (45) hide show
  1. package/dist/Calculators/Calculator.js +32 -34
  2. package/dist/Carousel/index.js +1 -0
  3. package/dist/Chevron/index.js +1 -0
  4. package/dist/Comparison/Comparison.js +1 -0
  5. package/dist/Comparison/ComparisonSet.js +1 -0
  6. package/dist/FaqAccordion/index.js +1 -1
  7. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -0
  8. package/dist/Forms/ContactUsBusiness.js +1 -0
  9. package/dist/Forms/ContactUsNMLSId.js +1 -0
  10. package/dist/Forms/EmailOnly.js +1 -0
  11. package/dist/Forms/SuccesForm.js +1 -0
  12. package/dist/HeroBanner/HeroBanner.css.d.ts +1 -0
  13. package/dist/HeroBanner/HeroBanner.css.js +9 -7
  14. package/dist/HeroBanner/HeroBanner.js +79 -66
  15. package/dist/HeroBanner/index.js +2 -1
  16. package/dist/Hyperlink/index.js +1 -0
  17. package/dist/ImageLink/ImageLink.js +1 -0
  18. package/dist/ImageLink/ImageLinkSet.js +1 -0
  19. package/dist/ImageLink/index.js +1 -0
  20. package/dist/Interstitial/Interstitial-variants.css.d.ts +10 -0
  21. package/dist/Interstitial/Interstitial-variants.css.js +9 -0
  22. package/dist/Interstitial/Interstitial.d.ts +16 -0
  23. package/dist/Interstitial/Interstitial.js +91 -0
  24. package/dist/Interstitial/Interstitial.module.js +32 -0
  25. package/dist/Interstitial/index.d.ts +1 -0
  26. package/dist/Interstitial/index.js +22 -0
  27. package/dist/Modal/Modal.js +1 -0
  28. package/dist/NavigationMenu/AxosBank/SubNavBar.js +127 -651
  29. package/dist/SetContainer/SetContainer.js +1 -0
  30. package/dist/Table/Table.css.d.ts +1 -0
  31. package/dist/Table/Table.css.js +2 -0
  32. package/dist/Table/Table.interface.d.ts +1 -0
  33. package/dist/Table/Table.js +1 -1
  34. package/dist/Table/index.js +2 -1
  35. package/dist/assets/HeroBanner/HeroBanner.css +39 -35
  36. package/dist/assets/HeroBanner/SelectionBanner.css +1 -0
  37. package/dist/assets/Interstitial/Interstitial-variants.css +9 -0
  38. package/dist/assets/Interstitial/Interstitial.css.css +137 -0
  39. package/dist/assets/SetContainer/SetContainer.css +2 -3
  40. package/dist/assets/Table/Table.css +5 -1
  41. package/dist/assets/globals.css +6 -0
  42. package/dist/main.d.ts +1 -0
  43. package/dist/main.js +6 -2
  44. package/dist/utils/allowedAxosDomains.js +3 -1
  45. package/package.json +1 -1
@@ -63,6 +63,7 @@ import "../../FaqAccordion/index.js";
63
63
  import "../../FooterDisclosure/FooterDisclosure.css.js";
64
64
  /* empty css */
65
65
  import "../../ImageBillboard/ImageBillboard.css.js";
66
+ import "../../Interstitial/Interstitial-variants.css.js";
66
67
  import "../../LandingPageHeader/LandingPageHeader.css.js";
67
68
  /* empty css */
68
69
  /* empty css */
@@ -98,6 +99,7 @@ function SubNavBar() {
98
99
  useEffect(() => {
99
100
  setShowNavbar(
100
101
  () => [
102
+ "/",
101
103
  "/personal",
102
104
  "/business",
103
105
  "/partners",
@@ -521,15 +523,7 @@ function SubNavBar() {
521
523
  "div",
522
524
  {
523
525
  className: `${styles.headline_cta} ${styles.ml_8}`,
524
- children: /* @__PURE__ */ jsx(
525
- Link,
526
- {
527
- href: findMoreAxosDomains(
528
- "{AXOSBANK}/customer-support/personal-support"
529
- ),
530
- children: "Help & Support"
531
- }
532
- )
526
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
533
527
  }
534
528
  )
535
529
  ] })
@@ -549,61 +543,18 @@ function SubNavBar() {
549
543
  }
550
544
  ),
551
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" }) }),
552
548
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
553
549
  Link,
554
550
  {
555
- href: findMoreAxosDomains(
556
- "{AXOSBANK}/personal/checking"
557
- ),
558
- role: "heading",
559
- children: "Checking"
560
- }
561
- ) }),
562
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
563
- Link,
564
- {
565
- href: findMoreAxosDomains(
566
- "{AXOSBANK}/personal/checking/rewards-checking"
567
- ),
568
- children: "Rewards Checking"
569
- }
570
- ) }),
571
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
572
- Link,
573
- {
574
- href: findMoreAxosDomains(
575
- "{AXOSBANK}/personal/checking/essential-checking"
576
- ),
551
+ href: "/personal/checking/essential-checking",
577
552
  children: "Essential Checking"
578
553
  }
579
554
  ) }),
580
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
581
- Link,
582
- {
583
- href: findMoreAxosDomains(
584
- "{AXOSBANK}/personal/checking/first-checking"
585
- ),
586
- children: "First Checking"
587
- }
588
- ) }),
589
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
590
- Link,
591
- {
592
- href: findMoreAxosDomains(
593
- "{AXOSBANK}/personal/checking/cashback-checking"
594
- ),
595
- children: "CashBack Checking"
596
- }
597
- ) }),
598
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
599
- Link,
600
- {
601
- href: findMoreAxosDomains(
602
- "{AXOSBANK}/personal/checking/golden-checking"
603
- ),
604
- children: "Golden Checking"
605
- }
606
- ) })
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" }) })
607
558
  ] })
608
559
  ] }),
609
560
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -617,43 +568,16 @@ function SubNavBar() {
617
568
  }
618
569
  ),
619
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" }) }),
620
573
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
621
574
  Link,
622
575
  {
623
- href: findMoreAxosDomains(
624
- "{AXOSBANK}/personal/savings"
625
- ),
626
- role: "heading",
627
- children: "Savings"
628
- }
629
- ) }),
630
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
631
- Link,
632
- {
633
- href: findMoreAxosDomains(
634
- "{AXOSBANK}/personal/savings/high-yield-savings"
635
- ),
636
- children: "High Yield Savings"
637
- }
638
- ) }),
639
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
640
- Link,
641
- {
642
- href: findMoreAxosDomains(
643
- "{AXOSBANK}/personal/savings/high-yield-money-market"
644
- ),
576
+ href: "/personal/savings/high-yield-money-market",
645
577
  children: "High Yield Money Market"
646
578
  }
647
579
  ) }),
648
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
649
- Link,
650
- {
651
- href: findMoreAxosDomains(
652
- "{AXOSBANK}/personal/savings/first-savings"
653
- ),
654
- children: "First Savings"
655
- }
656
- ) })
580
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/savings/first-savings", children: "First Savings" }) })
657
581
  ] })
658
582
  ] }),
659
583
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -679,40 +603,13 @@ function SubNavBar() {
679
603
  }
680
604
  ),
681
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+" }) }),
682
609
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
683
610
  Link,
684
611
  {
685
- href: findMoreAxosDomains(
686
- "{AXOSBANK}/personal/premier"
687
- ),
688
- role: "heading",
689
- children: "Premier"
690
- }
691
- ) }),
692
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
693
- Link,
694
- {
695
- href: findMoreAxosDomains(
696
- "{AXOSBANK}/personal/premier/privateclient"
697
- ),
698
- children: "Private Client"
699
- }
700
- ) }),
701
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
702
- Link,
703
- {
704
- href: findMoreAxosDomains(
705
- "{AXOSBANK}/personal/premier/insureguardplus"
706
- ),
707
- children: "InsureGuard+"
708
- }
709
- ) }),
710
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
711
- Link,
712
- {
713
- href: findMoreAxosDomains(
714
- "{AXOSBANK}/personal/premier/worldcheckingandsavings"
715
- ),
612
+ href: "/personal/premier/worldcheckingandsavings",
716
613
  children: "World Checking & Savings"
717
614
  }
718
615
  ) })
@@ -740,16 +637,7 @@ function SubNavBar() {
740
637
  height: 20
741
638
  }
742
639
  ),
743
- /* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
744
- Link,
745
- {
746
- href: findMoreAxosDomains(
747
- "{AXOSBANK}/refer-a-friend"
748
- ),
749
- role: "heading",
750
- children: "Refer-a-Friend"
751
- }
752
- ) }) })
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" }) }) })
753
641
  ] })
754
642
  ] })
755
643
  ]
@@ -824,15 +712,7 @@ function SubNavBar() {
824
712
  "div",
825
713
  {
826
714
  className: `${styles.headline_cta} ${styles.ml_8}`,
827
- children: /* @__PURE__ */ jsx(
828
- Link,
829
- {
830
- href: findMoreAxosDomains(
831
- "{AXOSBANK}/customer-support/personal-support"
832
- ),
833
- children: "Help & Support"
834
- }
835
- )
715
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
836
716
  }
837
717
  )
838
718
  ] })
@@ -852,52 +732,17 @@ function SubNavBar() {
852
732
  }
853
733
  ),
854
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" }) }),
855
738
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
856
739
  Link,
857
740
  {
858
- href: findMoreAxosDomains(
859
- "{AXOSBANK}/personal/mortgages"
860
- ),
861
- role: "heading",
862
- children: "Mortgage"
863
- }
864
- ) }),
865
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
866
- Link,
867
- {
868
- href: findMoreAxosDomains(
869
- "{AXOSBANK}/personal/mortgages/buying-a-home"
870
- ),
871
- children: "Mortgage Refinance"
872
- }
873
- ) }),
874
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
875
- Link,
876
- {
877
- href: findMoreAxosDomains(
878
- "{AXOSBANK}/personal/mortgages/refinance"
879
- ),
880
- children: "Mortgage Refinance"
881
- }
882
- ) }),
883
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
884
- Link,
885
- {
886
- href: findMoreAxosDomains(
887
- "{AXOSBANK}/personal/mortgages/buying-a-home/get-pre-qualifies"
888
- ),
741
+ href: "/personal/mortgages/buying-a-home/get-pre-qualifies",
889
742
  children: "Get Pre-qualified"
890
743
  }
891
744
  ) }),
892
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
893
- Link,
894
- {
895
- href: findMoreAxosDomains(
896
- "{AXOSBANK}/personal/mortgages"
897
- ),
898
- children: "Get a Rate Quote"
899
- }
900
- ) }),
745
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages", children: "Get a Rate Quote" }) }),
901
746
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
902
747
  Link,
903
748
  {
@@ -905,42 +750,16 @@ function SubNavBar() {
905
750
  children: "Apply Now"
906
751
  }
907
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" }) }),
908
755
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
909
756
  Link,
910
757
  {
911
- href: findMoreAxosDomains(
912
- "{AXOSBANK}/personal/mortgages/mortgage-options"
913
- ),
914
- children: "Mortgage Options"
915
- }
916
- ) }),
917
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
918
- Link,
919
- {
920
- href: findMoreAxosDomains(
921
- "{AXOSBANK}/personal/mortgages/mortgage-support"
922
- ),
923
- children: "Mortgage Services"
924
- }
925
- ) }),
926
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
927
- Link,
928
- {
929
- href: findMoreAxosDomains(
930
- "{AXOSBANK}/customer-Support/personal-support/manage-my-loan"
931
- ),
758
+ href: "/customer-Support/personal-support/manage-my-loan",
932
759
  children: "Make a Payment"
933
760
  }
934
761
  ) }),
935
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
936
- Link,
937
- {
938
- href: findMoreAxosDomains(
939
- "{AXOSBANK}/personal/mortgages/rate-watch"
940
- ),
941
- children: "Rate Watch"
942
- }
943
- ) })
762
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/mortgages/rate-watch", children: "Rate Watch" }) })
944
763
  ] })
945
764
  ] }),
946
765
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -957,56 +776,38 @@ function SubNavBar() {
957
776
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
958
777
  Link,
959
778
  {
960
- href: findMoreAxosDomains(
961
- "{AXOSBANK}/personal/personal-loans"
962
- ),
779
+ href: "/personal/personal-loans",
963
780
  role: "heading",
964
781
  children: "Personal Loans"
965
782
  }
966
783
  ) }),
967
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
968
- Link,
969
- {
970
- href: findMoreAxosDomains(
971
- "{AXOSBANK}/personal/personal-loans"
972
- ),
973
- children: "Learn More"
974
- }
975
- ) }),
784
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/personal-loans", children: "Learn More" }) }),
976
785
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: `https://personalloans.axosbank.com/`, children: "Apply Now" }) }),
977
786
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
978
787
  Link,
979
788
  {
980
- href: findMoreAxosDomains(
981
- "{AXOSBANK}/customer-support/personal-support/manage-my-loan"
982
- ),
789
+ href: "/customer-support/personal-support/manage-my-loan",
983
790
  children: "Make a Payment"
984
791
  }
985
792
  ) }),
986
793
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
987
794
  Link,
988
795
  {
989
- href: findMoreAxosDomains(
990
- "{AXOSBANK}/personal/personal-loans/debt-consolidation-loans"
991
- ),
796
+ href: "/personal/personal-loans/debt-consolidation-loans",
992
797
  children: "Debt Consolidation Loans"
993
798
  }
994
799
  ) }),
995
800
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
996
801
  Link,
997
802
  {
998
- href: findMoreAxosDomains(
999
- "{AXOSBANK}/personal/personal-loans/home-improvement-loans"
1000
- ),
803
+ href: "/personal/personal-loans/home-improvement-loans",
1001
804
  children: "Home Improvement Loans"
1002
805
  }
1003
806
  ) }),
1004
807
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1005
808
  Link,
1006
809
  {
1007
- href: findMoreAxosDomains(
1008
- "{AXOSBANK}/personal/personal-loans/major-purchases-loans"
1009
- ),
810
+ href: "/personal/personal-loans/major-purchases-loans",
1010
811
  children: "Major Purchases Loans"
1011
812
  }
1012
813
  ) })
@@ -1023,49 +824,26 @@ function SubNavBar() {
1023
824
  }
1024
825
  ),
1025
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" }) }),
1026
828
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1027
829
  Link,
1028
830
  {
1029
- href: findMoreAxosDomains(
1030
- "{AXOSBANK}/personal/auto-loan"
1031
- ),
1032
- role: "heading",
1033
- children: "Auto Loans"
1034
- }
1035
- ) }),
1036
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1037
- Link,
1038
- {
1039
- href: findMoreAxosDomains(
1040
- "{AXOSBANK}/personal/auto-loan/purchase-a-vehicle"
1041
- ),
831
+ href: "/personal/auto-loan/purchase-a-vehicle",
1042
832
  children: "Auto Purchase Loans"
1043
833
  }
1044
834
  ) }),
835
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/personal/auto-loan/refincance", children: "Auto Refinance Loans" }) }),
1045
836
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1046
837
  Link,
1047
838
  {
1048
- href: findMoreAxosDomains(
1049
- "{AXOSBANK}/personal/auto-loan/refincance"
1050
- ),
1051
- children: "Auto Refinance Loans"
1052
- }
1053
- ) }),
1054
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1055
- Link,
1056
- {
1057
- href: findMoreAxosDomains(
1058
- "{AXOSBANK}/tools/calculators/auto-loan-calculator"
1059
- ),
839
+ href: "/tools/calculators/auto-loan-calculator",
1060
840
  children: "Auto Payment Calculator"
1061
841
  }
1062
842
  ) }),
1063
843
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1064
844
  Link,
1065
845
  {
1066
- href: findMoreAxosDomains(
1067
- "{AXOSBANK}/customer-support/personal-support/manage-my-loan"
1068
- ),
846
+ href: "/customer-support/personal-support/manage-my-loan",
1069
847
  children: "Manage My Loan"
1070
848
  }
1071
849
  ) })
@@ -1176,15 +954,7 @@ function SubNavBar() {
1176
954
  "div",
1177
955
  {
1178
956
  className: `${styles.headline_cta} ${styles.ml_8}`,
1179
- children: /* @__PURE__ */ jsx(
1180
- Link,
1181
- {
1182
- href: findMoreAxosDomains(
1183
- "{AXOSBANK}/customer-support/personal-support"
1184
- ),
1185
- children: "Help & Support"
1186
- }
1187
- )
957
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1188
958
  }
1189
959
  )
1190
960
  ] })
@@ -1432,15 +1202,7 @@ function SubNavBar() {
1432
1202
  "div",
1433
1203
  {
1434
1204
  className: `${styles.headline_cta} ${styles.ml_8}`,
1435
- children: /* @__PURE__ */ jsx(
1436
- Link,
1437
- {
1438
- href: findMoreAxosDomains(
1439
- "{AXOSBANK}/customer-support/personal-support"
1440
- ),
1441
- children: "Help & Support"
1442
- }
1443
- )
1205
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/personal-support", children: "Help & Support" })
1444
1206
  }
1445
1207
  )
1446
1208
  ] })
@@ -1463,31 +1225,13 @@ function SubNavBar() {
1463
1225
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1464
1226
  Link,
1465
1227
  {
1466
- href: findMoreAxosDomains(
1467
- "{AXOSBANK}/tools/payment-apps/mobile-app"
1468
- ),
1228
+ href: "/tools/payment-apps/mobile-app",
1469
1229
  role: "heading",
1470
1230
  children: "Axos Mobile App"
1471
1231
  }
1472
1232
  ) }),
1473
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1474
- Link,
1475
- {
1476
- href: findMoreAxosDomains(
1477
- "{AXOSBANK}/tools/payment-apps/mobile-app"
1478
- ),
1479
- children: "Download the App"
1480
- }
1481
- ) }),
1482
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1483
- Link,
1484
- {
1485
- href: findMoreAxosDomains(
1486
- "{AXOSBANK}/tools/payment-apps/mobile-app"
1487
- ),
1488
- children: "Mobile App Features"
1489
- }
1490
- ) })
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" }) })
1491
1235
  ] })
1492
1236
  ] }),
1493
1237
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -1501,48 +1245,11 @@ function SubNavBar() {
1501
1245
  }
1502
1246
  ),
1503
1247
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1504
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1505
- Link,
1506
- {
1507
- href: findMoreAxosDomains("{AXOSBANK}/tools"),
1508
- role: "heading",
1509
- children: "Financial Tools"
1510
- }
1511
- ) }),
1512
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1513
- Link,
1514
- {
1515
- href: findMoreAxosDomains(
1516
- "{AXOSBANK}/tools/calculators"
1517
- ),
1518
- children: "Calculators"
1519
- }
1520
- ) }),
1521
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1522
- Link,
1523
- {
1524
- href: findMoreAxosDomains(
1525
- "{AXOSBANK}/tools/credit-score-monitoring"
1526
- ),
1527
- children: "Credit Score Monitoring"
1528
- }
1529
- ) }),
1530
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1531
- Link,
1532
- {
1533
- href: findMoreAxosDomains(
1534
- "{AXOSBANK}/personal/personal-finance-manager"
1535
- ),
1536
- children: "Personal Finance Manager"
1537
- }
1538
- ) }),
1539
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1540
- Link,
1541
- {
1542
- href: findMoreAxosDomains("{AXOSBANK}/tools"),
1543
- children: "Additional Tools"
1544
- }
1545
- ) })
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" }) })
1546
1253
  ] })
1547
1254
  ] }),
1548
1255
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
@@ -1556,15 +1263,8 @@ function SubNavBar() {
1556
1263
  }
1557
1264
  ),
1558
1265
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
1559
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1560
- Link,
1561
- {
1562
- href: findMoreAxosDomains("{AXOSBANK}/blog"),
1563
- role: "heading",
1564
- children: "Education & Insights"
1565
- }
1566
- ) }),
1567
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: findMoreAxosDomains("{AXOSBANK}/blog"), children: "Personal Finance" }) }),
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" }) }),
1568
1268
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1569
1269
  Link,
1570
1270
  {
@@ -1572,15 +1272,7 @@ function SubNavBar() {
1572
1272
  children: "Investing Insight"
1573
1273
  }
1574
1274
  ) }),
1575
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1576
- Link,
1577
- {
1578
- href: findMoreAxosDomains(
1579
- "{AXOSBANK}/blog/categories/podcast"
1580
- ),
1581
- children: "Investing Podcase"
1582
- }
1583
- ) })
1275
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/blog/categories/podcast", children: "Investing Podcase" }) })
1584
1276
  ] })
1585
1277
  ] })
1586
1278
  ] })
@@ -1623,9 +1315,7 @@ function SubNavBar() {
1623
1315
  /* @__PURE__ */ jsx(
1624
1316
  Link,
1625
1317
  {
1626
- href: findMoreAxosDomains(
1627
- "{AXOSBANK}/business/open-account-return-to-application"
1628
- ),
1318
+ href: "/business/open-account-return-to-application",
1629
1319
  "aria-label": "open a business account",
1630
1320
  className: "text_center bg_white",
1631
1321
  children: "Open an Account"
@@ -1667,15 +1357,7 @@ function SubNavBar() {
1667
1357
  "div",
1668
1358
  {
1669
1359
  className: `${styles.headline_cta} ${styles.ml_8}`,
1670
- children: /* @__PURE__ */ jsx(
1671
- Link,
1672
- {
1673
- href: findMoreAxosDomains(
1674
- "{AXOSBANK}/customer-support/business-support"
1675
- ),
1676
- children: "Help & Support"
1677
- }
1678
- )
1360
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1679
1361
  }
1680
1362
  )
1681
1363
  ] })
@@ -1698,9 +1380,7 @@ function SubNavBar() {
1698
1380
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1699
1381
  Link,
1700
1382
  {
1701
- href: findMoreAxosDomains(
1702
- "{AXOSBANK}/business/small-business-banking/business-checking-compare"
1703
- ),
1383
+ href: "/business/small-business-banking/business-checking-compare",
1704
1384
  role: "heading",
1705
1385
  children: "Checking"
1706
1386
  }
@@ -1708,18 +1388,14 @@ function SubNavBar() {
1708
1388
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1709
1389
  Link,
1710
1390
  {
1711
- href: findMoreAxosDomains(
1712
- "{AXOSBANK}/business/small-business-banking/business-checking-compare/basic-business-checking"
1713
- ),
1391
+ href: "/business/small-business-banking/business-checking-compare/basic-business-checking",
1714
1392
  children: "Basic Business Checking"
1715
1393
  }
1716
1394
  ) }),
1717
1395
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1718
1396
  Link,
1719
1397
  {
1720
- href: findMoreAxosDomains(
1721
- "{AXOSBANK}/business/small-business-banking/business-checking-compare/business-interest-checking"
1722
- ),
1398
+ href: "/business/small-business-banking/business-checking-compare/business-interest-checking",
1723
1399
  children: "Business Interest Checking"
1724
1400
  }
1725
1401
  ) })
@@ -1739,9 +1415,7 @@ function SubNavBar() {
1739
1415
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1740
1416
  Link,
1741
1417
  {
1742
- href: findMoreAxosDomains(
1743
- "{AXOSBANK}/business/small-business-banking/savings"
1744
- ),
1418
+ href: "/business/small-business-banking/savings",
1745
1419
  role: "heading",
1746
1420
  children: "Savings"
1747
1421
  }
@@ -1749,45 +1423,35 @@ function SubNavBar() {
1749
1423
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1750
1424
  Link,
1751
1425
  {
1752
- href: findMoreAxosDomains(
1753
- "{AXOSBANK}/business/small-business-banking/savings/business-money-market-accounts/business-money-market"
1754
- ),
1426
+ href: "/business/small-business-banking/savings/business-money-market-accounts/business-money-market",
1755
1427
  children: "Business Money Market"
1756
1428
  }
1757
1429
  ) }),
1758
1430
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1759
1431
  Link,
1760
1432
  {
1761
- href: findMoreAxosDomains(
1762
- "{AXOSBANK}/business/small-business-banking/savings/business-savings-accounts/business-premium-saving"
1763
- ),
1433
+ href: "/business/small-business-banking/savings/business-savings-accounts/business-premium-saving",
1764
1434
  children: "Business Premium Savings"
1765
1435
  }
1766
1436
  ) }),
1767
1437
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1768
1438
  Link,
1769
1439
  {
1770
- href: findMoreAxosDomains(
1771
- "{AXOSBANK}/business/small-business-banking/savings/business-savings-accounts/business-savings"
1772
- ),
1440
+ href: "/business/small-business-banking/savings/business-savings-accounts/business-savings",
1773
1441
  children: "Business Savings"
1774
1442
  }
1775
1443
  ) }),
1776
1444
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1777
1445
  Link,
1778
1446
  {
1779
- href: findMoreAxosDomains(
1780
- "{AXOSBANK}/business/small-business-banking/savings/business-money-market-accounts/non-profit-money-market"
1781
- ),
1447
+ href: "/business/small-business-banking/savings/business-money-market-accounts/non-profit-money-market",
1782
1448
  children: "Non-Profit Money Market"
1783
1449
  }
1784
1450
  ) }),
1785
1451
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1786
1452
  Link,
1787
1453
  {
1788
- href: findMoreAxosDomains(
1789
- "{AXOSBANK}/business/small-business-banking/savings/business-cds"
1790
- ),
1454
+ href: "/business/small-business-banking/savings/business-cds",
1791
1455
  children: "Business CDs"
1792
1456
  }
1793
1457
  ) })
@@ -1807,9 +1471,7 @@ function SubNavBar() {
1807
1471
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1808
1472
  Link,
1809
1473
  {
1810
- href: findMoreAxosDomains(
1811
- "{AXOSBANK}/business/small-business-banking/services"
1812
- ),
1474
+ href: "/business/small-business-banking/services",
1813
1475
  role: "heading",
1814
1476
  children: "Services"
1815
1477
  }
@@ -1817,45 +1479,35 @@ function SubNavBar() {
1817
1479
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1818
1480
  Link,
1819
1481
  {
1820
- href: findMoreAxosDomains(
1821
- "{AXOSBANK}/business/small-business-banking/services/merchant-services"
1822
- ),
1482
+ href: "/business/small-business-banking/services/merchant-services",
1823
1483
  children: "Merchant Services"
1824
1484
  }
1825
1485
  ) }),
1826
1486
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1827
1487
  Link,
1828
1488
  {
1829
- href: findMoreAxosDomains(
1830
- "{AXOSBANK}/business/small-business-banking/services/payroll-services"
1831
- ),
1489
+ href: "/business/small-business-banking/services/payroll-services",
1832
1490
  children: "Payroll Services"
1833
1491
  }
1834
1492
  ) }),
1835
1493
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1836
1494
  Link,
1837
1495
  {
1838
- href: findMoreAxosDomains(
1839
- "{AXOSBANK}/business/small-business-banking/services/sba-loans"
1840
- ),
1496
+ href: "/business/small-business-banking/services/sba-loans",
1841
1497
  children: "SBA Loans"
1842
1498
  }
1843
1499
  ) }),
1844
1500
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1845
1501
  Link,
1846
1502
  {
1847
- href: findMoreAxosDomains(
1848
- "{AXOSBANK}/business/small-business-banking/services/treasury-management"
1849
- ),
1503
+ href: "/business/small-business-banking/services/treasury-management",
1850
1504
  children: "Treasury Management"
1851
1505
  }
1852
1506
  ) }),
1853
1507
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1854
1508
  Link,
1855
1509
  {
1856
- href: findMoreAxosDomains(
1857
- "{AXOSBANK}/business/small-business-banking/services/insured-cash-sweep"
1858
- ),
1510
+ href: "/business/small-business-banking/services/insured-cash-sweep",
1859
1511
  children: "Insured Cash Sweep"
1860
1512
  }
1861
1513
  ) })
@@ -1875,9 +1527,7 @@ function SubNavBar() {
1875
1527
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1876
1528
  Link,
1877
1529
  {
1878
- href: findMoreAxosDomains(
1879
- "{AXOSBANK}/customer-support/business-support"
1880
- ),
1530
+ href: "/customer-support/business-support",
1881
1531
  role: "heading",
1882
1532
  children: "Other Resources"
1883
1533
  }
@@ -1885,36 +1535,16 @@ function SubNavBar() {
1885
1535
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1886
1536
  Link,
1887
1537
  {
1888
- href: findMoreAxosDomains(
1889
- "{AXOSBANK}/customer-support/business-support/faq"
1890
- ),
1538
+ href: "/customer-support/business-support/faq",
1891
1539
  children: "FAQ"
1892
1540
  }
1893
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" }) }),
1894
1544
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1895
1545
  Link,
1896
1546
  {
1897
- href: findMoreAxosDomains(
1898
- "{AXOSBANK}/business/business-rates"
1899
- ),
1900
- children: "Rates"
1901
- }
1902
- ) }),
1903
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1904
- Link,
1905
- {
1906
- href: findMoreAxosDomains(
1907
- "{AXOSBANK}/atm-locator"
1908
- ),
1909
- children: "ATM Locator"
1910
- }
1911
- ) }),
1912
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
1913
- Link,
1914
- {
1915
- href: findMoreAxosDomains(
1916
- "{AXOSBANK}/tools/calculators/saving-to-start-a-business-calculator"
1917
- ),
1547
+ href: "/tools/calculators/saving-to-start-a-business-calculator",
1918
1548
  children: "Calculators"
1919
1549
  }
1920
1550
  ) })
@@ -1980,15 +1610,7 @@ function SubNavBar() {
1980
1610
  "div",
1981
1611
  {
1982
1612
  className: `${styles.headline_cta} ${styles.ml_8}`,
1983
- children: /* @__PURE__ */ jsx(
1984
- Link,
1985
- {
1986
- href: findMoreAxosDomains(
1987
- "{AXOSBANK}/customer-support/business-support"
1988
- ),
1989
- children: "Help & Support"
1990
- }
1991
- )
1613
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
1992
1614
  }
1993
1615
  )
1994
1616
  ] })
@@ -2011,9 +1633,7 @@ function SubNavBar() {
2011
1633
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2012
1634
  Link,
2013
1635
  {
2014
- href: findMoreAxosDomains(
2015
- "{AXOSBANK}/business/commercial-banking"
2016
- ),
1636
+ href: "/business/commercial-banking",
2017
1637
  role: "heading",
2018
1638
  children: "Solutions By Industry"
2019
1639
  }
@@ -2021,54 +1641,42 @@ function SubNavBar() {
2021
1641
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2022
1642
  Link,
2023
1643
  {
2024
- href: findMoreAxosDomains(
2025
- "{AXOSBANK}/business/commercial-banking/third-party-payment-processors"
2026
- ),
1644
+ href: "/business/commercial-banking/third-party-payment-processors",
2027
1645
  children: "Third Party Payment Processors"
2028
1646
  }
2029
1647
  ) }),
2030
1648
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2031
1649
  Link,
2032
1650
  {
2033
- href: findMoreAxosDomains(
2034
- "{AXOSBANK}/business/commercial-banking/hoa-banking-and-lending"
2035
- ),
1651
+ href: "/business/commercial-banking/hoa-banking-and-lending",
2036
1652
  children: "HOA Banking & Lending"
2037
1653
  }
2038
1654
  ) }),
2039
1655
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2040
1656
  Link,
2041
1657
  {
2042
- href: findMoreAxosDomains(
2043
- "{AXOSBANK}/business/commercial-banking/hoas-property-management"
2044
- ),
1658
+ href: "/business/commercial-banking/hoas-property-management",
2045
1659
  children: "HOAs & Property Management"
2046
1660
  }
2047
1661
  ) }),
2048
1662
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2049
1663
  Link,
2050
1664
  {
2051
- href: findMoreAxosDomains(
2052
- "{AXOSBANK}/business/commercial-banking/1031-exchange-qualified-intermediaries"
2053
- ),
1665
+ href: "/business/commercial-banking/1031-exchange-qualified-intermediaries",
2054
1666
  children: "1031 Exchange Qualified Intermediaries"
2055
1667
  }
2056
1668
  ) }),
2057
1669
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2058
1670
  Link,
2059
1671
  {
2060
- href: findMoreAxosDomains(
2061
- "{AXOSBANK}/business/commercial-banking/title-and-escrow"
2062
- ),
1672
+ href: "/business/commercial-banking/title-and-escrow",
2063
1673
  children: "Title & Escrow"
2064
1674
  }
2065
1675
  ) }),
2066
1676
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2067
1677
  Link,
2068
1678
  {
2069
- href: findMoreAxosDomains(
2070
- "{AXOSBANK}/business/commercial-banking/global-fiduciary-banking"
2071
- ),
1679
+ href: "/business/commercial-banking/global-fiduciary-banking",
2072
1680
  children: "Global Fiduciary Banking"
2073
1681
  }
2074
1682
  ) }),
@@ -2082,18 +1690,14 @@ function SubNavBar() {
2082
1690
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2083
1691
  Link,
2084
1692
  {
2085
- href: findMoreAxosDomains(
2086
- "{AXOSBANK}/business/commercial-banking/business-management-banking"
2087
- ),
1693
+ href: "/business/commercial-banking/business-management-banking",
2088
1694
  children: "Business Management Banking"
2089
1695
  }
2090
1696
  ) }),
2091
1697
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2092
1698
  Link,
2093
1699
  {
2094
- href: findMoreAxosDomains(
2095
- "{AXOSBANK}/business/commercial-banking/hedge-funds-and-alternative-fund-banking-solutions"
2096
- ),
1700
+ href: "/business/commercial-banking/hedge-funds-and-alternative-fund-banking-solutions",
2097
1701
  children: "Hedge Funds & Alternative Fund Banking Solutions"
2098
1702
  }
2099
1703
  ) })
@@ -2113,9 +1717,7 @@ function SubNavBar() {
2113
1717
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2114
1718
  Link,
2115
1719
  {
2116
- href: findMoreAxosDomains(
2117
- "{AXOSBANK}/business/commercial-banking"
2118
- ),
1720
+ href: "/business/commercial-banking",
2119
1721
  role: "heading",
2120
1722
  children: "Services"
2121
1723
  }
@@ -2123,36 +1725,22 @@ function SubNavBar() {
2123
1725
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2124
1726
  Link,
2125
1727
  {
2126
- href: findMoreAxosDomains(
2127
- "{AXOSBANK}/business/commercial-banking/analyzed-checking"
2128
- ),
1728
+ href: "/business/commercial-banking/analyzed-checking",
2129
1729
  children: "Analyzed Business Checking"
2130
1730
  }
2131
1731
  ) }),
1732
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/business/business-merchant-services", children: "Merchant Services" }) }),
2132
1733
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2133
1734
  Link,
2134
1735
  {
2135
- href: findMoreAxosDomains(
2136
- "{AXOSBANK}/business/business-merchant-services"
2137
- ),
2138
- children: "Merchant Services"
2139
- }
2140
- ) }),
2141
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2142
- Link,
2143
- {
2144
- href: findMoreAxosDomains(
2145
- "{AXOSBANK}/business/commercial-banking/treasury-management"
2146
- ),
1736
+ href: "/business/commercial-banking/treasury-management",
2147
1737
  children: "Treasury Management"
2148
1738
  }
2149
1739
  ) }),
2150
1740
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
2151
1741
  Link,
2152
1742
  {
2153
- href: findMoreAxosDomains(
2154
- "{AXOSBANK}/business/commercial-banking/intrafi-network-deposits"
2155
- ),
1743
+ href: "/business/commercial-banking/intrafi-network-deposits",
2156
1744
  children: [
2157
1745
  "IntraFi",
2158
1746
  /* @__PURE__ */ jsx("sup", { children: "®" }),
@@ -2177,9 +1765,7 @@ function SubNavBar() {
2177
1765
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2178
1766
  Link,
2179
1767
  {
2180
- href: findMoreAxosDomains(
2181
- "{AXOSBANK}/customer-support/business-support"
2182
- ),
1768
+ href: "/customer-support/business-support",
2183
1769
  role: "heading",
2184
1770
  children: "Other Resources"
2185
1771
  }
@@ -2187,9 +1773,7 @@ function SubNavBar() {
2187
1773
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2188
1774
  Link,
2189
1775
  {
2190
- href: findMoreAxosDomains(
2191
- "{AXOSBANK}/business/commercial-banking/calculators"
2192
- ),
1776
+ href: "/business/commercial-banking/calculators",
2193
1777
  children: "Calculators"
2194
1778
  }
2195
1779
  ) })
@@ -2255,15 +1839,7 @@ function SubNavBar() {
2255
1839
  "div",
2256
1840
  {
2257
1841
  className: `${styles.headline_cta} ${styles.ml_8}`,
2258
- children: /* @__PURE__ */ jsx(
2259
- Link,
2260
- {
2261
- href: findMoreAxosDomains(
2262
- "{AXOSBANK}/customer-support/business-support"
2263
- ),
2264
- children: "Help & Support"
2265
- }
2266
- )
1842
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/business-support", children: "Help & Support" })
2267
1843
  }
2268
1844
  )
2269
1845
  ] })
@@ -2286,9 +1862,7 @@ function SubNavBar() {
2286
1862
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2287
1863
  Link,
2288
1864
  {
2289
- href: findMoreAxosDomains(
2290
- "{AXOSBANK}/business/commercial-lending"
2291
- ),
1865
+ href: "/business/commercial-lending",
2292
1866
  role: "heading",
2293
1867
  children: "Credit and Financial"
2294
1868
  }
@@ -2296,27 +1870,21 @@ function SubNavBar() {
2296
1870
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2297
1871
  Link,
2298
1872
  {
2299
- href: findMoreAxosDomains(
2300
- "{AXOSBANK}/business/commercial-lending/commercial-lines-of-credit"
2301
- ),
1873
+ href: "/business/commercial-lending/commercial-lines-of-credit",
2302
1874
  children: "Commercial Lines of Credit"
2303
1875
  }
2304
1876
  ) }),
2305
1877
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2306
1878
  Link,
2307
1879
  {
2308
- href: findMoreAxosDomains(
2309
- "{AXOSBANK}/business/commercial-lending/commercial-term-loans"
2310
- ),
1880
+ href: "/business/commercial-lending/commercial-term-loans",
2311
1881
  children: "Comnmercial Term Loans"
2312
1882
  }
2313
1883
  ) }),
2314
1884
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2315
1885
  Link,
2316
1886
  {
2317
- href: findMoreAxosDomains(
2318
- "{AXOSBANK}/business/commercial-lending/equipment-finance"
2319
- ),
1887
+ href: "/business/commercial-lending/equipment-finance",
2320
1888
  children: "Equipment Finance"
2321
1889
  }
2322
1890
  ) })
@@ -2336,9 +1904,7 @@ function SubNavBar() {
2336
1904
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2337
1905
  Link,
2338
1906
  {
2339
- href: findMoreAxosDomains(
2340
- "{AXOSBANK}/business/commercial-lending"
2341
- ),
1907
+ href: "/business/commercial-lending",
2342
1908
  role: "heading",
2343
1909
  children: "Commercial Lending"
2344
1910
  }
@@ -2346,54 +1912,42 @@ function SubNavBar() {
2346
1912
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2347
1913
  Link,
2348
1914
  {
2349
- href: findMoreAxosDomains(
2350
- "{AXOSBANK}/business/commercial-lending/Commercial-Term-Loans"
2351
- ),
1915
+ href: "/business/commercial-lending/Commercial-Term-Loans",
2352
1916
  children: "Commercial Real Estate Bridge & Construction Lending"
2353
1917
  }
2354
1918
  ) }),
2355
1919
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2356
1920
  Link,
2357
1921
  {
2358
- href: findMoreAxosDomains(
2359
- "{AXOSBANK}/business/commercial-lending/hoa-lending"
2360
- ),
1922
+ href: "/business/commercial-lending/hoa-lending",
2361
1923
  children: "HOA Lending"
2362
1924
  }
2363
1925
  ) }),
2364
1926
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2365
1927
  Link,
2366
1928
  {
2367
- href: findMoreAxosDomains(
2368
- "{AXOSBANK}/business/commercial-lending/lender-finance"
2369
- ),
1929
+ href: "/business/commercial-lending/lender-finance",
2370
1930
  children: "Lender Finance"
2371
1931
  }
2372
1932
  ) }),
2373
1933
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2374
1934
  Link,
2375
1935
  {
2376
- href: findMoreAxosDomains(
2377
- "{AXOSBANK}/business/commercial-lending/warehouse-lending"
2378
- ),
1936
+ href: "/business/commercial-lending/warehouse-lending",
2379
1937
  children: "Residential Warehouse Lending"
2380
1938
  }
2381
1939
  ) }),
2382
1940
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2383
1941
  Link,
2384
1942
  {
2385
- href: findMoreAxosDomains(
2386
- "{AXOSBANK}/business/commercial-lending/small-balance-commercial-real-estate"
2387
- ),
1943
+ href: "/business/commercial-lending/small-balance-commercial-real-estate",
2388
1944
  children: "Small Balance Commercial Real Estate"
2389
1945
  }
2390
1946
  ) }),
2391
1947
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2392
1948
  Link,
2393
1949
  {
2394
- href: findMoreAxosDomains(
2395
- "{AXOSBANK}/business/commercial-lending/leveraged-finance"
2396
- ),
1950
+ href: "/business/commercial-lending/leveraged-finance",
2397
1951
  children: "Leveraged Finance"
2398
1952
  }
2399
1953
  ) }),
@@ -2420,28 +1974,16 @@ function SubNavBar() {
2420
1974
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2421
1975
  Link,
2422
1976
  {
2423
- href: findMoreAxosDomains(
2424
- "{AXOSBANK}/customer-support/business-support"
2425
- ),
1977
+ href: "/customer-support/business-support",
2426
1978
  role: "heading",
2427
1979
  children: "Other Resources"
2428
1980
  }
2429
1981
  ) }),
1982
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/commercial-portal", children: "Commercial Portal" }) }),
2430
1983
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2431
1984
  Link,
2432
1985
  {
2433
- href: findMoreAxosDomains(
2434
- "{AXOSBANK}/commercial-portal"
2435
- ),
2436
- children: "Commercial Portal"
2437
- }
2438
- ) }),
2439
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2440
- Link,
2441
- {
2442
- href: findMoreAxosDomains(
2443
- "{AXOSBANK}/business/commercial-banking/calculators"
2444
- ),
1986
+ href: "/business/commercial-banking/calculators",
2445
1987
  children: "Calculators"
2446
1988
  }
2447
1989
  ) })
@@ -2482,9 +2024,7 @@ function SubNavBar() {
2482
2024
  /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
2483
2025
  Link,
2484
2026
  {
2485
- href: findMoreAxosDomains(
2486
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/quick-pricer"
2487
- ),
2027
+ href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2488
2028
  "aria-label": "Get started with the Axos Quick Pricer",
2489
2029
  className: "text_center bg_white",
2490
2030
  children: "Price a Loan"
@@ -2518,15 +2058,7 @@ function SubNavBar() {
2518
2058
  "div",
2519
2059
  {
2520
2060
  className: `${styles.headline_cta} ${styles.ml_8}`,
2521
- children: /* @__PURE__ */ jsx(
2522
- Link,
2523
- {
2524
- href: findMoreAxosDomains(
2525
- "{AXOSBANK}/customer-support/partner-support"
2526
- ),
2527
- children: "Help & Support"
2528
- }
2529
- )
2061
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2530
2062
  }
2531
2063
  )
2532
2064
  ] })
@@ -2549,9 +2081,7 @@ function SubNavBar() {
2549
2081
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2550
2082
  Link,
2551
2083
  {
2552
- href: findMoreAxosDomains(
2553
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending"
2554
- ),
2084
+ href: "/partners/wholesale-correspondent-portfolio-lending",
2555
2085
  role: "heading",
2556
2086
  children: "Wholesale & Correspondent Lending"
2557
2087
  }
@@ -2559,36 +2089,28 @@ function SubNavBar() {
2559
2089
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2560
2090
  Link,
2561
2091
  {
2562
- href: findMoreAxosDomains(
2563
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/programs-and-products"
2564
- ),
2092
+ href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products",
2565
2093
  children: "All Programs & Products"
2566
2094
  }
2567
2095
  ) }),
2568
2096
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2569
2097
  Link,
2570
2098
  {
2571
- href: findMoreAxosDomains(
2572
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/programs-and-products/dscr"
2573
- ),
2099
+ href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products/dscr",
2574
2100
  children: "DSCR"
2575
2101
  }
2576
2102
  ) }),
2577
2103
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2578
2104
  Link,
2579
2105
  {
2580
- href: findMoreAxosDomains(
2581
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/programs-and-products/cash-flow-maximizer"
2582
- ),
2106
+ href: "/partners/wholesale-correspondent-portfolio-lending/programs-and-products/cash-flow-maximizer",
2583
2107
  children: "Cash-Flow mAXimizer"
2584
2108
  }
2585
2109
  ) }),
2586
2110
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2587
2111
  Link,
2588
2112
  {
2589
- href: findMoreAxosDomains(
2590
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/meet-the-team"
2591
- ),
2113
+ href: "/partners/wholesale-correspondent-portfolio-lending/meet-the-team",
2592
2114
  children: "Meet the Team"
2593
2115
  }
2594
2116
  ) })
@@ -2608,9 +2130,7 @@ function SubNavBar() {
2608
2130
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2609
2131
  Link,
2610
2132
  {
2611
- href: findMoreAxosDomains(
2612
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/resources-support"
2613
- ),
2133
+ href: "/partners/wholesale-correspondent-portfolio-lending/resources-support",
2614
2134
  role: "heading",
2615
2135
  children: "Resources & Support"
2616
2136
  }
@@ -2625,9 +2145,7 @@ function SubNavBar() {
2625
2145
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2626
2146
  Link,
2627
2147
  {
2628
- href: findMoreAxosDomains(
2629
- "{AXOSBANK}/partners/wholesale-correspondent-portfolio-lending/quick-pricer"
2630
- ),
2148
+ href: "/partners/wholesale-correspondent-portfolio-lending/quick-pricer",
2631
2149
  children: "Quick Pricer"
2632
2150
  }
2633
2151
  ) })
@@ -2693,15 +2211,7 @@ function SubNavBar() {
2693
2211
  "div",
2694
2212
  {
2695
2213
  className: `${styles.headline_cta} ${styles.ml_8}`,
2696
- children: /* @__PURE__ */ jsx(
2697
- Link,
2698
- {
2699
- href: findMoreAxosDomains(
2700
- "{AXOSBANK}/customer-support/partner-support"
2701
- ),
2702
- children: "Help & Support"
2703
- }
2704
- )
2214
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2705
2215
  }
2706
2216
  )
2707
2217
  ] })
@@ -2723,9 +2233,7 @@ function SubNavBar() {
2723
2233
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2724
2234
  Link,
2725
2235
  {
2726
- href: findMoreAxosDomains(
2727
- "{AXOSBANK}/partners/small-balance-commercial"
2728
- ),
2236
+ href: "/partners/small-balance-commercial",
2729
2237
  role: "heading",
2730
2238
  children: "Small Balance Commercial"
2731
2239
  }
@@ -2733,63 +2241,49 @@ function SubNavBar() {
2733
2241
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2734
2242
  Link,
2735
2243
  {
2736
- href: findMoreAxosDomains(
2737
- "{AXOSBANK}/partners/small-balance-commercial/investor-owned-2-4-unit-lending"
2738
- ),
2244
+ href: "/partners/small-balance-commercial/investor-owned-2-4-unit-lending",
2739
2245
  children: "Investor-Owned 2-4 Unit Properties"
2740
2246
  }
2741
2247
  ) }),
2742
2248
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2743
2249
  Link,
2744
2250
  {
2745
- href: findMoreAxosDomains(
2746
- "{AXOSBANK}/partners/small-balance-commercial/mixed-use-lending"
2747
- ),
2251
+ href: "/partners/small-balance-commercial/mixed-use-lending",
2748
2252
  children: "Mixed-Use"
2749
2253
  }
2750
2254
  ) }),
2751
2255
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2752
2256
  Link,
2753
2257
  {
2754
- href: findMoreAxosDomains(
2755
- "{AXOSBANK}/partners/small-balance-commercial/mobile-home-park"
2756
- ),
2258
+ href: "/partners/small-balance-commercial/mobile-home-park",
2757
2259
  children: "Mobile Home Park"
2758
2260
  }
2759
2261
  ) }),
2760
2262
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2761
2263
  Link,
2762
2264
  {
2763
- href: findMoreAxosDomains(
2764
- "{AXOSBANK}/partners/small-balance-commercial/multifamily-lending"
2765
- ),
2265
+ href: "/partners/small-balance-commercial/multifamily-lending",
2766
2266
  children: "Multi-Family Housing"
2767
2267
  }
2768
2268
  ) }),
2769
2269
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2770
2270
  Link,
2771
2271
  {
2772
- href: findMoreAxosDomains(
2773
- "{AXOSBANK}/partners/small-balance-commercial/non-resident-aliens"
2774
- ),
2272
+ href: "/partners/small-balance-commercial/non-resident-aliens",
2775
2273
  children: "Non-Resident Aliens"
2776
2274
  }
2777
2275
  ) }),
2778
2276
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2779
2277
  Link,
2780
2278
  {
2781
- href: findMoreAxosDomains(
2782
- "{AXOSBANK}/partners/small-balance-commercial/retail-office-and-industrial"
2783
- ),
2279
+ href: "/partners/small-balance-commercial/retail-office-and-industrial",
2784
2280
  children: "Retail Office & Industrial"
2785
2281
  }
2786
2282
  ) }),
2787
2283
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2788
2284
  Link,
2789
2285
  {
2790
- href: findMoreAxosDomains(
2791
- "{AXOSBANK}/partners/small-balance-commercial/student-housing"
2792
- ),
2286
+ href: "/partners/small-balance-commercial/student-housing",
2793
2287
  children: "Student Housing"
2794
2288
  }
2795
2289
  ) })
@@ -2854,15 +2348,7 @@ function SubNavBar() {
2854
2348
  "div",
2855
2349
  {
2856
2350
  className: `${styles.headline_cta} ${styles.ml_8}`,
2857
- children: /* @__PURE__ */ jsx(
2858
- Link,
2859
- {
2860
- href: findMoreAxosDomains(
2861
- "{AXOSBANK}/customer-support/partner-support"
2862
- ),
2863
- children: "Help & Support"
2864
- }
2865
- )
2351
+ children: /* @__PURE__ */ jsx(Link, { href: "/customer-support/partner-support", children: "Help & Support" })
2866
2352
  }
2867
2353
  )
2868
2354
  ] })
@@ -2884,22 +2370,12 @@ function SubNavBar() {
2884
2370
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2885
2371
  Link,
2886
2372
  {
2887
- href: findMoreAxosDomains(
2888
- "{AXOSBANK}/partners/dealer-services"
2889
- ),
2373
+ href: "/partners/dealer-services",
2890
2374
  role: "heading",
2891
2375
  children: "Dealer Services"
2892
2376
  }
2893
2377
  ) }),
2894
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2895
- Link,
2896
- {
2897
- href: findMoreAxosDomains(
2898
- "{AXOSBANK}/partners/dealer-services/contact"
2899
- ),
2900
- children: "Request More Information"
2901
- }
2902
- ) })
2378
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: "/partners/dealer-services/contact", children: "Request More Information" }) })
2903
2379
  ] })
2904
2380
  ] }) })
2905
2381
  ]