- {top_header_data.map(({ id, name }) => (
+ {top_header_data.map(({ id, name, href }) => (
-
-
+
{name}
-
+
))}
diff --git a/src/pages/BusinessBankingPage.tsx b/src/pages/BusinessBankingPage.tsx
new file mode 100644
index 0000000..5185ecc
--- /dev/null
+++ b/src/pages/BusinessBankingPage.tsx
@@ -0,0 +1,8 @@
+import React from "react";
+import { HomeLayout } from "../layouts";
+
+const BusinessBankingPage: React.FC = () => {
+ return
Business Banking;
+};
+
+export default BusinessBankingPage;
diff --git a/src/pages/CooperateBankingPage.tsx b/src/pages/CooperateBankingPage.tsx
new file mode 100644
index 0000000..1a0f845
--- /dev/null
+++ b/src/pages/CooperateBankingPage.tsx
@@ -0,0 +1,12 @@
+import React from 'react'
+import { HomeLayout } from '../layouts'
+
+const CooperateBankingPage: React.FC = () => {
+ return (
+
+ Cooperate Banking
+
+ )
+}
+
+export default CooperateBankingPage
diff --git a/src/pages/PersonalBankingPage.tsx b/src/pages/PersonalBankingPage.tsx
new file mode 100644
index 0000000..95be387
--- /dev/null
+++ b/src/pages/PersonalBankingPage.tsx
@@ -0,0 +1,12 @@
+import React from 'react'
+import { HomeLayout } from '../layouts'
+
+const PersonalBankingPage: React.FC = () => {
+ return (
+
+ Personal Banking
+
+ )
+}
+
+export default PersonalBankingPage
diff --git a/src/pages/TermsAndConditionPage.tsx b/src/pages/TermsAndConditionPage.tsx
index a273710..b2c83c2 100644
--- a/src/pages/TermsAndConditionPage.tsx
+++ b/src/pages/TermsAndConditionPage.tsx
@@ -2,7 +2,7 @@ import React from "react";
import { HomeLayout } from "../layouts";
import { TsAndCs } from "../components";
-const TermsAndConditionPage = () => {
+const TermsAndConditionPage: React.FC = () => {
return (
diff --git a/src/pages/index.ts b/src/pages/index.ts
index 32f4957..91bd4d9 100644
--- a/src/pages/index.ts
+++ b/src/pages/index.ts
@@ -7,6 +7,9 @@ import DashboardProfilePage from "./DashboardProfilePage";
import DashboardVerificationPage from "./DashboardVerificationPage";
import DashboardpaymentsPage from "./DashboardPaymentsPage";
import TermsAndConditionPage from "./TermsAndConditionPage";
+import PersonalBankingPage from "./PersonalBankingPage";
+import BusinessBankingPage from "./BusinessBankingPage";
+import CooperateBankingPage from "./CooperateBankingPage";
export {
HomePage,
@@ -18,4 +21,7 @@ export {
DashboardVerificationPage,
DashboardpaymentsPage,
TermsAndConditionPage,
+ PersonalBankingPage,
+ BusinessBankingPage,
+ CooperateBankingPage
};
diff --git a/src/router/Router.tsx b/src/router/Router.tsx
index f03b3e2..f4fe8a0 100644
--- a/src/router/Router.tsx
+++ b/src/router/Router.tsx
@@ -10,6 +10,9 @@ import {
DashboardVerificationPage,
DashboardpaymentsPage,
TermsAndConditionPage,
+ BusinessBankingPage,
+ CooperateBankingPage,
+ PersonalBankingPage,
} from "../pages";
import { DashboardAuth } from "../components";
@@ -23,6 +26,10 @@ const Routers = () => {
path={RouteHandler.termsAndConditions}
element={}
/>
+ } />
+ } />
+ } />
+
}>