merged branch

This commit was merged in pull request #12.
This commit is contained in:
victorAnumudu
2024-03-16 03:09:41 +01:00
11 changed files with 127 additions and 43 deletions
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardLegals() {
return (
<div>DashboardLegals</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function Dashboardpayments() {
return (
<div>Dashboardpayments</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardProfile() {
return (
<div>DashboardProfile</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardVerification() {
return (
<div>DashboardVerification</div>
)
}
+5 -1
View File
@@ -2,5 +2,9 @@ import HomePage from "./HomePage";
import LoginPage from "./LoginPage";
import GetStartedPage from "./GetStartedPage";
import DashboardHome from "./DashboardHome";
import DashboardLegals from "./DashboardLegals";
import DashboardProfile from "./DashboardProfile";
import DashboardVerification from "./DashboardVerification";
import Dashboardpayments from "./DashboardPayments";
export {HomePage, LoginPage, GetStartedPage, DashboardHome}
export {HomePage, LoginPage, GetStartedPage, DashboardHome, DashboardLegals, DashboardProfile, DashboardVerification, Dashboardpayments}