Merge branch 'master' of https://gitlab.chiefsoft.net/DigiFi/digifi-www into first-homepage-layout

This commit is contained in:
Ebube
2024-03-17 20:08:16 +01:00
26 changed files with 470 additions and 45 deletions
+9
View File
@@ -0,0 +1,9 @@
import { DashboardHome } from "../components"
export default function DashboardHomePage() {
return (
<div className=''>
<DashboardHome />
</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardLegalsPage() {
return (
<div>DashboardLegals</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardpaymentsPage() {
return (
<div>Dashboardpayments</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardProfilePage() {
return (
<div>DashboardProfile</div>
)
}
+5
View File
@@ -0,0 +1,5 @@
export default function DashboardVerificationPage() {
return (
<div>DashboardVerification</div>
)
}
+15 -1
View File
@@ -1,5 +1,19 @@
import HomePage from "./HomePage";
import LoginPage from "./LoginPage";
import GetStartedPage from "./GetStartedPage";
import DashboardHomePage from "./DashboardHomePage";
import DashboardLegalsPage from "./DashboardLegalsPage";
import DashboardProfilePage from "./DashboardProfilePage";
import DashboardVerificationPage from "./DashboardVerificationPage";
import DashboardpaymentsPage from "./DashboardPaymentsPage";
export {HomePage, LoginPage, GetStartedPage}
export {
HomePage,
LoginPage,
GetStartedPage,
DashboardHomePage,
DashboardLegalsPage,
DashboardProfilePage,
DashboardVerificationPage,
DashboardpaymentsPage,
};