This commit is contained in:
Mitchell Magro 2025-06-23 10:06:01 +02:00
commit 55b471584e
2 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,9 @@ import { GeneralHealthCard } from "../../GeneralHealthCard/GeneralHealthCard"
import { TransactionsOverview } from "../../TransactionsOverview/TransactionsOverview"
import { TransactionsWaitingApproval } from "../../TransactionsWaitingApproval/TransactionsWaitingApproval"
export const HomePage = () => {
export const DashboardHomePage = () => {
return (
<>
<Box sx={{ p: 2 }}>

View File

@ -1,11 +1,10 @@
'use client';
import { HomePage } from "@/app/components/pages/homepage/homepage";
import { DashboardHomePage } from "../components/Pages/DashboardHomePage/DashboardHomePage";
const DashboardPage = () => {
return (
<HomePage />
<DashboardHomePage />
);
};