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