@axos-web-dev/shared-components 1.0.100-dev.81 → 1.0.100-dev.82
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/Auth/ErrorAlert.js +1 -1
- package/dist/Button/Button.js +1 -1
- package/dist/Calculators/ApyCalculator/index.js +3 -1
- package/dist/Calculators/AxosOneCalculator/index.js +4 -2
- package/dist/Calculators/MarginTradingCalculator/index.js +1 -1
- package/dist/Calculators/SummitApyCalculator/index.js +3 -1
- package/dist/Carousel/index.js +1 -1
- package/dist/Comparison/Comparison.js +1 -1
- package/dist/FaqAccordion/index.js +1 -1
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +113 -15
- package/dist/Forms/ApplyNow.js +1 -1
- package/dist/Forms/ContactUsBusiness.js +1 -1
- package/dist/Forms/ContactUsBusinessNameEmail.js +1 -1
- package/dist/Forms/ContactUsNMLSId.js +1 -1
- package/dist/Forms/CpraRequest.js +1 -1
- package/dist/Forms/CraPublicFile.js +1 -1
- package/dist/Forms/EmailOnly.js +1 -1
- package/dist/Forms/MortgageRate/MortgageRateForm.js +1 -1
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +1 -1
- package/dist/Forms/MortgageWarehouseLending.js +1 -1
- package/dist/Forms/SuccesForm.js +1 -1
- package/dist/Hyperlink/index.js +1 -1
- package/dist/ImageLink/ImageLink.js +1 -1
- package/dist/ImageLink/ImageLinkSet.js +1 -1
- package/dist/ImageLink/index.js +1 -1
- package/dist/Insight/Featured/CategorySelector.js +1 -1
- package/dist/Insight/Featured/Featured.js +1 -1
- package/dist/Insight/Featured/Header.js +1 -1
- package/dist/Modal/Modal.js +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.js +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +99 -297
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +88 -24
- package/dist/NavigationMenu/AxosBank/index.js +24 -10
- package/dist/NavigationMenu/LaVictoire/index.js +25 -4
- package/dist/NavigationMenu/SignInNavButton.js +8 -2
- package/dist/SetContainer/SetContainer.js +1 -1
- package/package.json +136 -136
|
@@ -130,13 +130,13 @@ import "../../StepItemSet/StepItemSet.css.js";
|
|
|
130
130
|
import { sub_nav, dd_media, dd_main_btn, dd_cta_link } from "./SubNavbar.css.js";
|
|
131
131
|
function SubNavBar() {
|
|
132
132
|
const pathname = usePathname();
|
|
133
|
-
const { resolveUrl } = useGlobalContext();
|
|
133
|
+
const { resolveUrl, domains } = useGlobalContext();
|
|
134
134
|
const subNavItems = getSubNavItems(resolveUrl);
|
|
135
135
|
const [hoveredLink, setHoveredLink] = useState(void 0);
|
|
136
136
|
const handleMouseEnter = (link) => setHoveredLink(link);
|
|
137
137
|
const handleMouseLeave = () => setHoveredLink(void 0);
|
|
138
|
-
const AXOS_ONE_APY =
|
|
139
|
-
const AXOS_ONE_APY_CHECKING =
|
|
138
|
+
const AXOS_ONE_APY = Number(domains.AXOS_ONE_APY);
|
|
139
|
+
const AXOS_ONE_APY_CHECKING = Number(domains.AXOS_ONE_APY_CHECKING);
|
|
140
140
|
const containerRef = useRef(null);
|
|
141
141
|
const [isClient, setIsClient] = useState(false);
|
|
142
142
|
const support = subNavItems.support;
|
|
@@ -200,7 +200,9 @@ function SubNavBar() {
|
|
|
200
200
|
/* @__PURE__ */ jsx(
|
|
201
201
|
"a",
|
|
202
202
|
{
|
|
203
|
-
href: resolveUrl(
|
|
203
|
+
href: resolveUrl(
|
|
204
|
+
"{AXOSBANK}/personal/bank"
|
|
205
|
+
),
|
|
204
206
|
id: "personalNav1",
|
|
205
207
|
"aria-label": "Press Enter to navigate to the Bank section home page, or press Tab again to focus on the down arrow and press Enter to open the Bank section sub-menu.",
|
|
206
208
|
children: "Bank"
|
|
@@ -250,7 +252,9 @@ function SubNavBar() {
|
|
|
250
252
|
/* @__PURE__ */ jsx(
|
|
251
253
|
"a",
|
|
252
254
|
{
|
|
253
|
-
href: resolveUrl(
|
|
255
|
+
href: resolveUrl(
|
|
256
|
+
"{AXOSBANK}/personal/borrow"
|
|
257
|
+
),
|
|
254
258
|
id: "personalNav2",
|
|
255
259
|
"aria-label": "Press Enter to navigate to the Borrow section home page, or press Tab again to focus on the down arrow and press Enter to open the Borrow section sub-menu.",
|
|
256
260
|
children: "Borrow"
|
|
@@ -350,7 +354,9 @@ function SubNavBar() {
|
|
|
350
354
|
/* @__PURE__ */ jsx(
|
|
351
355
|
"a",
|
|
352
356
|
{
|
|
353
|
-
href: resolveUrl(
|
|
357
|
+
href: resolveUrl(
|
|
358
|
+
"{AXOSBANK}/personal/plan"
|
|
359
|
+
),
|
|
354
360
|
id: "personalNav4",
|
|
355
361
|
"aria-label": "Press Enter to navigate to the Plan section home page, or press Tab again to focus on the down arrow and press Enter to open the Plan section sub-menu.",
|
|
356
362
|
children: "Plan"
|
|
@@ -452,7 +458,9 @@ function SubNavBar() {
|
|
|
452
458
|
/* @__PURE__ */ jsx(
|
|
453
459
|
"a",
|
|
454
460
|
{
|
|
455
|
-
href: resolveUrl(
|
|
461
|
+
href: resolveUrl(
|
|
462
|
+
"{AXOSBANK}/commercial/banking"
|
|
463
|
+
),
|
|
456
464
|
id: "busNav2",
|
|
457
465
|
"aria-label": "Press Enter to navigate to the Commercial Banking section home page, or press Tab again to focus on the down arrow and press Enter to open the Commercial Banking section sub-menu.",
|
|
458
466
|
children: "Commercial Banking"
|
|
@@ -502,7 +510,9 @@ function SubNavBar() {
|
|
|
502
510
|
/* @__PURE__ */ jsx(
|
|
503
511
|
"a",
|
|
504
512
|
{
|
|
505
|
-
href: resolveUrl(
|
|
513
|
+
href: resolveUrl(
|
|
514
|
+
"{AXOSBANK}/commercial/lending"
|
|
515
|
+
),
|
|
506
516
|
id: "busNav3",
|
|
507
517
|
"aria-label": "Press Enter to navigate to the Commercial Lending section home page, or press Tab again to focus on the down arrow and press Enter to open the Commercial Lending section sub-menu.",
|
|
508
518
|
children: "Commercial Lending"
|
|
@@ -606,7 +616,9 @@ function SubNavBar() {
|
|
|
606
616
|
/* @__PURE__ */ jsx(
|
|
607
617
|
"a",
|
|
608
618
|
{
|
|
609
|
-
href: resolveUrl(
|
|
619
|
+
href: resolveUrl(
|
|
620
|
+
"{AXOSBANK}/partners/dealer-services"
|
|
621
|
+
),
|
|
610
622
|
id: "partNav5",
|
|
611
623
|
"aria-label": "Press Enter to navigate to the Dealer Services section home page, or press Tab again to focus on the down arrow and press Enter to open the Dealer Services section sub-menu.",
|
|
612
624
|
children: "Dealer Services"
|
|
@@ -791,7 +803,9 @@ function SubNavBar() {
|
|
|
791
803
|
children: /* @__PURE__ */ jsx(
|
|
792
804
|
Link,
|
|
793
805
|
{
|
|
794
|
-
href: resolveUrl(
|
|
806
|
+
href: resolveUrl(
|
|
807
|
+
"{AXOSBANK}/personal/support"
|
|
808
|
+
),
|
|
795
809
|
children: "Help & Support"
|
|
796
810
|
}
|
|
797
811
|
)
|
|
@@ -1138,7 +1152,9 @@ function SubNavBar() {
|
|
|
1138
1152
|
children: /* @__PURE__ */ jsx(
|
|
1139
1153
|
Link,
|
|
1140
1154
|
{
|
|
1141
|
-
href: resolveUrl(
|
|
1155
|
+
href: resolveUrl(
|
|
1156
|
+
"{AXOSBANK}/personal/support"
|
|
1157
|
+
),
|
|
1142
1158
|
children: "Help & Support"
|
|
1143
1159
|
}
|
|
1144
1160
|
)
|
|
@@ -1275,7 +1291,15 @@ function SubNavBar() {
|
|
|
1275
1291
|
children: "Learn More"
|
|
1276
1292
|
}
|
|
1277
1293
|
) }),
|
|
1278
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1294
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1295
|
+
Link,
|
|
1296
|
+
{
|
|
1297
|
+
href: resolveUrl(
|
|
1298
|
+
`{PERSONALLOANS}`
|
|
1299
|
+
),
|
|
1300
|
+
children: "Apply Now"
|
|
1301
|
+
}
|
|
1302
|
+
) }),
|
|
1279
1303
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1280
1304
|
Link,
|
|
1281
1305
|
{
|
|
@@ -1502,7 +1526,15 @@ function SubNavBar() {
|
|
|
1502
1526
|
"div",
|
|
1503
1527
|
{
|
|
1504
1528
|
className: `${styles.headline_cta} ${styles.ml_8}`,
|
|
1505
|
-
children: /* @__PURE__ */ jsx(
|
|
1529
|
+
children: /* @__PURE__ */ jsx(
|
|
1530
|
+
Link,
|
|
1531
|
+
{
|
|
1532
|
+
href: resolveUrl(
|
|
1533
|
+
"{AXOS}/invest/support"
|
|
1534
|
+
),
|
|
1535
|
+
children: "Help & Support"
|
|
1536
|
+
}
|
|
1537
|
+
)
|
|
1506
1538
|
}
|
|
1507
1539
|
)
|
|
1508
1540
|
] })
|
|
@@ -1624,7 +1656,9 @@ function SubNavBar() {
|
|
|
1624
1656
|
/* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1625
1657
|
Link,
|
|
1626
1658
|
{
|
|
1627
|
-
href: resolveUrl(
|
|
1659
|
+
href: resolveUrl(
|
|
1660
|
+
"{AXOS}/invest/retirement"
|
|
1661
|
+
),
|
|
1628
1662
|
role: "heading",
|
|
1629
1663
|
children: "Retirement"
|
|
1630
1664
|
}
|
|
@@ -1643,7 +1677,9 @@ function SubNavBar() {
|
|
|
1643
1677
|
/* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1644
1678
|
Link,
|
|
1645
1679
|
{
|
|
1646
|
-
href: resolveUrl(
|
|
1680
|
+
href: resolveUrl(
|
|
1681
|
+
"{AXOS}/invest/support"
|
|
1682
|
+
),
|
|
1647
1683
|
role: "heading",
|
|
1648
1684
|
children: "Support"
|
|
1649
1685
|
}
|
|
@@ -1662,7 +1698,9 @@ function SubNavBar() {
|
|
|
1662
1698
|
/* @__PURE__ */ jsx("ul", { className: `${styles.ml_8} list_unstyled`, children: /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1663
1699
|
Link,
|
|
1664
1700
|
{
|
|
1665
|
-
href: resolveUrl(
|
|
1701
|
+
href: resolveUrl(
|
|
1702
|
+
"{AXOS}/invest/insights"
|
|
1703
|
+
),
|
|
1666
1704
|
role: "heading",
|
|
1667
1705
|
children: "Insights"
|
|
1668
1706
|
}
|
|
@@ -1759,7 +1797,9 @@ function SubNavBar() {
|
|
|
1759
1797
|
children: /* @__PURE__ */ jsx(
|
|
1760
1798
|
Link,
|
|
1761
1799
|
{
|
|
1762
|
-
href: resolveUrl(
|
|
1800
|
+
href: resolveUrl(
|
|
1801
|
+
"{AXOSBANK}/personal/support"
|
|
1802
|
+
),
|
|
1763
1803
|
children: "Help & Support"
|
|
1764
1804
|
}
|
|
1765
1805
|
)
|
|
@@ -1826,7 +1866,9 @@ function SubNavBar() {
|
|
|
1826
1866
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1827
1867
|
Link,
|
|
1828
1868
|
{
|
|
1829
|
-
href: resolveUrl(
|
|
1869
|
+
href: resolveUrl(
|
|
1870
|
+
"{AXOSBANK}/tools"
|
|
1871
|
+
),
|
|
1830
1872
|
role: "heading",
|
|
1831
1873
|
children: "Financial Tools"
|
|
1832
1874
|
}
|
|
@@ -1858,7 +1900,15 @@ function SubNavBar() {
|
|
|
1858
1900
|
children: "Personal Finance Manager"
|
|
1859
1901
|
}
|
|
1860
1902
|
) }),
|
|
1861
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1903
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1904
|
+
Link,
|
|
1905
|
+
{
|
|
1906
|
+
href: resolveUrl(
|
|
1907
|
+
"{AXOSBANK}/tools"
|
|
1908
|
+
),
|
|
1909
|
+
children: "Additional Tools"
|
|
1910
|
+
}
|
|
1911
|
+
) }),
|
|
1862
1912
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1863
1913
|
Link,
|
|
1864
1914
|
{
|
|
@@ -1903,7 +1953,9 @@ function SubNavBar() {
|
|
|
1903
1953
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1904
1954
|
Link,
|
|
1905
1955
|
{
|
|
1906
|
-
href: resolveUrl(
|
|
1956
|
+
href: resolveUrl(
|
|
1957
|
+
"{AXOS}/invest/insights"
|
|
1958
|
+
),
|
|
1907
1959
|
children: "Investing Insights"
|
|
1908
1960
|
}
|
|
1909
1961
|
) })
|
|
@@ -2023,7 +2075,9 @@ function SubNavBar() {
|
|
|
2023
2075
|
children: /* @__PURE__ */ jsx(
|
|
2024
2076
|
Link,
|
|
2025
2077
|
{
|
|
2026
|
-
href: resolveUrl(
|
|
2078
|
+
href: resolveUrl(
|
|
2079
|
+
"{AXOSBANK}/business/support"
|
|
2080
|
+
),
|
|
2027
2081
|
children: "Help & Support"
|
|
2028
2082
|
}
|
|
2029
2083
|
)
|
|
@@ -2492,7 +2546,9 @@ function SubNavBar() {
|
|
|
2492
2546
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2493
2547
|
Link,
|
|
2494
2548
|
{
|
|
2495
|
-
href: resolveUrl(
|
|
2549
|
+
href: resolveUrl(
|
|
2550
|
+
"{AXOSBANK}/commercial"
|
|
2551
|
+
),
|
|
2496
2552
|
role: "heading",
|
|
2497
2553
|
children: "Solutions By Industry"
|
|
2498
2554
|
}
|
|
@@ -2551,7 +2607,13 @@ function SubNavBar() {
|
|
|
2551
2607
|
children: "Global Fiduciary Banking"
|
|
2552
2608
|
}
|
|
2553
2609
|
) }),
|
|
2554
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2610
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2611
|
+
Link,
|
|
2612
|
+
{
|
|
2613
|
+
href: resolveUrl(`{AFS}`),
|
|
2614
|
+
children: "Fiduciary Services"
|
|
2615
|
+
}
|
|
2616
|
+
) }),
|
|
2555
2617
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2556
2618
|
Link,
|
|
2557
2619
|
{
|
|
@@ -3206,7 +3268,9 @@ function SubNavBar() {
|
|
|
3206
3268
|
children: /* @__PURE__ */ jsx(
|
|
3207
3269
|
Link,
|
|
3208
3270
|
{
|
|
3209
|
-
href: resolveUrl(
|
|
3271
|
+
href: resolveUrl(
|
|
3272
|
+
"{AXOSBANK}/partners/support"
|
|
3273
|
+
),
|
|
3210
3274
|
children: "Help & Support"
|
|
3211
3275
|
}
|
|
3212
3276
|
)
|
|
@@ -23,6 +23,7 @@ import "../../IconBillboard/IconBillboard.css.js";
|
|
|
23
23
|
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
24
24
|
import "../../Calculators/calculator.css.js";
|
|
25
25
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
26
|
+
import { useGlobalContext } from "../../Modal/contextApi/store.js";
|
|
26
27
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
27
28
|
import "../../Table/Table.css.js";
|
|
28
29
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -51,7 +52,6 @@ import "../../Input/RadioButton.css.js";
|
|
|
51
52
|
import "../../Input/Checkbox.css.js";
|
|
52
53
|
import "../../LoadingIndicator/LoadingIndicator.css.js";
|
|
53
54
|
/* empty css */
|
|
54
|
-
import { useGlobalContext } from "../../Modal/contextApi/store.js";
|
|
55
55
|
import "../../Interstitial/Interstitial-variants.css.js";
|
|
56
56
|
import "../../Inputs/Input.css.js";
|
|
57
57
|
/* empty css */
|
|
@@ -440,7 +440,13 @@ function NavBar({
|
|
|
440
440
|
"li",
|
|
441
441
|
{
|
|
442
442
|
className: `${styles.signin_subheader} ${signin_subheader}`,
|
|
443
|
-
children: /* @__PURE__ */ jsx(
|
|
443
|
+
children: /* @__PURE__ */ jsx(
|
|
444
|
+
"a",
|
|
445
|
+
{
|
|
446
|
+
href: resolveUrl("{ONLINEBANKING}/auth/Login"),
|
|
447
|
+
children: "Account Login"
|
|
448
|
+
}
|
|
449
|
+
)
|
|
444
450
|
}
|
|
445
451
|
),
|
|
446
452
|
/* @__PURE__ */ jsx(
|
|
@@ -466,7 +472,13 @@ function NavBar({
|
|
|
466
472
|
"li",
|
|
467
473
|
{
|
|
468
474
|
className: `${styles.signin_subheader} ${signin_subheader}`,
|
|
469
|
-
children: /* @__PURE__ */ jsx(
|
|
475
|
+
children: /* @__PURE__ */ jsx(
|
|
476
|
+
"a",
|
|
477
|
+
{
|
|
478
|
+
href: resolveUrl("{AXOSBANK}/business/login"),
|
|
479
|
+
children: "Business Banking Login"
|
|
480
|
+
}
|
|
481
|
+
)
|
|
470
482
|
}
|
|
471
483
|
),
|
|
472
484
|
/* @__PURE__ */ jsx(
|
|
@@ -476,9 +488,7 @@ function NavBar({
|
|
|
476
488
|
children: /* @__PURE__ */ jsx(
|
|
477
489
|
"a",
|
|
478
490
|
{
|
|
479
|
-
href: resolveUrl(
|
|
480
|
-
"{AXOSBANK}/business/mwa-business-banking"
|
|
481
|
-
),
|
|
491
|
+
href: resolveUrl("{AXOSBANK}/business/mwa-business-banking"),
|
|
482
492
|
children: "MWA Business Banking"
|
|
483
493
|
}
|
|
484
494
|
)
|
|
@@ -491,9 +501,7 @@ function NavBar({
|
|
|
491
501
|
children: /* @__PURE__ */ jsx(
|
|
492
502
|
"a",
|
|
493
503
|
{
|
|
494
|
-
href: resolveUrl(
|
|
495
|
-
"{AXOSBANK}/commercial/lending/commercial-portal"
|
|
496
|
-
),
|
|
504
|
+
href: resolveUrl("{AXOSBANK}/commercial/lending/commercial-portal"),
|
|
497
505
|
children: "Commercial Portal"
|
|
498
506
|
}
|
|
499
507
|
)
|
|
@@ -532,7 +540,13 @@ function NavBar({
|
|
|
532
540
|
{
|
|
533
541
|
className: `${styles.signin_subheader} ${signin_subheader} ${styles.signin_footer} relative`,
|
|
534
542
|
children: [
|
|
535
|
-
/* @__PURE__ */ jsx(
|
|
543
|
+
/* @__PURE__ */ jsx(
|
|
544
|
+
"a",
|
|
545
|
+
{
|
|
546
|
+
href: resolveUrl("{AXOSBANK}/customer-support"),
|
|
547
|
+
children: "Customer Support"
|
|
548
|
+
}
|
|
549
|
+
),
|
|
536
550
|
/* @__PURE__ */ jsx(
|
|
537
551
|
"a",
|
|
538
552
|
{
|
|
@@ -23,6 +23,7 @@ import "../../IconBillboard/IconBillboard.css.js";
|
|
|
23
23
|
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
24
24
|
import "../../Calculators/calculator.css.js";
|
|
25
25
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
26
|
+
import { useGlobalContext } from "../../Modal/contextApi/store.js";
|
|
26
27
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
27
28
|
import "../../Table/Table.css.js";
|
|
28
29
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -51,7 +52,6 @@ import "../../Input/RadioButton.css.js";
|
|
|
51
52
|
import "../../Input/Checkbox.css.js";
|
|
52
53
|
import "../../LoadingIndicator/LoadingIndicator.css.js";
|
|
53
54
|
/* empty css */
|
|
54
|
-
import { useGlobalContext } from "../../Modal/contextApi/store.js";
|
|
55
55
|
import "../../Interstitial/Interstitial-variants.css.js";
|
|
56
56
|
import "../../Inputs/Input.css.js";
|
|
57
57
|
/* empty css */
|
|
@@ -449,9 +449,30 @@ function NavBar() {
|
|
|
449
449
|
className: clsx(styles.sub_menu, isOpenProducts1 && expand),
|
|
450
450
|
children: [
|
|
451
451
|
/* @__PURE__ */ jsx("a", { href: "/about-us", className: styles.main, role: "heading", children: "About Us" }),
|
|
452
|
-
/* @__PURE__ */ jsx(
|
|
453
|
-
|
|
454
|
-
|
|
452
|
+
/* @__PURE__ */ jsx(
|
|
453
|
+
"a",
|
|
454
|
+
{
|
|
455
|
+
href: resolveUrl("/about-us/our-process"),
|
|
456
|
+
role: "menuitem",
|
|
457
|
+
children: "Our Process"
|
|
458
|
+
}
|
|
459
|
+
),
|
|
460
|
+
/* @__PURE__ */ jsx(
|
|
461
|
+
"a",
|
|
462
|
+
{
|
|
463
|
+
href: resolveUrl("/about-us/faqs"),
|
|
464
|
+
role: "menuitem",
|
|
465
|
+
children: "FAQs"
|
|
466
|
+
}
|
|
467
|
+
),
|
|
468
|
+
/* @__PURE__ */ jsx(
|
|
469
|
+
"a",
|
|
470
|
+
{
|
|
471
|
+
href: resolveUrl("/about-us/our-team"),
|
|
472
|
+
role: "menuitem",
|
|
473
|
+
children: "Our Team"
|
|
474
|
+
}
|
|
475
|
+
)
|
|
455
476
|
]
|
|
456
477
|
}
|
|
457
478
|
)
|
|
@@ -23,6 +23,7 @@ import "../IconBillboard/IconBillboard.css.js";
|
|
|
23
23
|
import { appendQueryParams } from "../utils/appendQueryParams.js";
|
|
24
24
|
import "../Calculators/calculator.css.js";
|
|
25
25
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
26
|
+
import { useGlobalContext } from "../Modal/contextApi/store.js";
|
|
26
27
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
27
28
|
import "../Table/Table.css.js";
|
|
28
29
|
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -51,7 +52,6 @@ import "../Input/RadioButton.css.js";
|
|
|
51
52
|
import "../Input/Checkbox.css.js";
|
|
52
53
|
import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
53
54
|
/* empty css */
|
|
54
|
-
import { useGlobalContext } from "../Modal/contextApi/store.js";
|
|
55
55
|
import "../Interstitial/Interstitial-variants.css.js";
|
|
56
56
|
import "../Inputs/Input.css.js";
|
|
57
57
|
/* empty css */
|
|
@@ -345,7 +345,13 @@ const SignInNavButton = () => {
|
|
|
345
345
|
className: `${styles.signin_subheader} ${signin_subheader} ${styles.signin_footer} relative`,
|
|
346
346
|
children: [
|
|
347
347
|
/* @__PURE__ */ jsx("a", { href: resolveUrl("{AXOSBANK}/customer-support"), children: "Customer Support" }),
|
|
348
|
-
/* @__PURE__ */ jsx(
|
|
348
|
+
/* @__PURE__ */ jsx(
|
|
349
|
+
"a",
|
|
350
|
+
{
|
|
351
|
+
href: resolveUrl("{AXOSBANK}/return-to-application"),
|
|
352
|
+
children: "Return to Application"
|
|
353
|
+
}
|
|
354
|
+
)
|
|
349
355
|
]
|
|
350
356
|
}
|
|
351
357
|
)
|
|
@@ -24,6 +24,7 @@ import "../ArticlesSet/ArticlesSet.css.js";
|
|
|
24
24
|
import "../Calculators/calculator.css.js";
|
|
25
25
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
26
26
|
import "../Button/Button.css.js";
|
|
27
|
+
import "../Modal/contextApi/store.js";
|
|
27
28
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
28
29
|
import "../Table/Table.css.js";
|
|
29
30
|
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -52,7 +53,6 @@ import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
|
52
53
|
import "react-use";
|
|
53
54
|
import "../Chevron/Chevron.css.js";
|
|
54
55
|
/* empty css */
|
|
55
|
-
import "../Modal/contextApi/store.js";
|
|
56
56
|
import "../Interstitial/Interstitial-variants.css.js";
|
|
57
57
|
import "../Inputs/Input.css.js";
|
|
58
58
|
/* empty css */
|