added some component to dashboard home page

This commit was merged in pull request #14.
This commit is contained in:
victorAnumudu
2024-03-16 17:47:17 +01:00
parent 9d86fc51c8
commit 81b2f439ce
17 changed files with 143 additions and 23 deletions
-5
View File
@@ -1,5 +0,0 @@
export default function DashboardHome() {
return (
<div className=''>DashboardHome</div>
)
}
+9
View File
@@ -0,0 +1,9 @@
import { DashboardHome } from "../components"
export default function DashboardHomePage() {
return (
<div className=''>
<DashboardHome />
</div>
)
}
@@ -1,4 +1,4 @@
export default function DashboardLegals() {
export default function DashboardLegalsPage() {
return (
<div>DashboardLegals</div>
)
@@ -1,4 +1,4 @@
export default function Dashboardpayments() {
export default function DashboardpaymentsPage() {
return (
<div>Dashboardpayments</div>
)
@@ -1,4 +1,4 @@
export default function DashboardProfile() {
export default function DashboardProfilePage() {
return (
<div>DashboardProfile</div>
)
@@ -1,4 +1,4 @@
export default function DashboardVerification() {
export default function DashboardVerificationPage() {
return (
<div>DashboardVerification</div>
)
+6 -6
View File
@@ -1,10 +1,10 @@
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";
import DashboardHomePage from "./DashboardHomePage";
import DashboardLegalsPage from "./DashboardLegalsPage";
import DashboardProfilePage from "./DashboardProfilePage";
import DashboardVerificationPage from "./DashboardVerificationPage";
import DashboardpaymentsPage from "./DashboardPaymentsPage";
export {HomePage, LoginPage, GetStartedPage, DashboardHome, DashboardLegals, DashboardProfile, DashboardVerification, Dashboardpayments}
export {HomePage, LoginPage, GetStartedPage, DashboardHomePage, DashboardLegalsPage, DashboardProfilePage, DashboardVerificationPage, DashboardpaymentsPage}