diff --git a/payment-iq/app/components/pages/homepage/homepage.tsx b/payment-iq/app/components/pages/DashboardHomePage/DashboardHomePage.tsx similarity index 91% rename from payment-iq/app/components/pages/homepage/homepage.tsx rename to payment-iq/app/components/pages/DashboardHomePage/DashboardHomePage.tsx index a2498ad..635d135 100644 --- a/payment-iq/app/components/pages/homepage/homepage.tsx +++ b/payment-iq/app/components/pages/DashboardHomePage/DashboardHomePage.tsx @@ -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 ( <> diff --git a/payment-iq/app/dashboard/page.tsx b/payment-iq/app/dashboard/page.tsx index fa06e89..37d5286 100644 --- a/payment-iq/app/dashboard/page.tsx +++ b/payment-iq/app/dashboard/page.tsx @@ -1,10 +1,10 @@ 'use client'; -import { HomePage } from "../components/Pages/HomePage/HomePage"; +import { DashboardHomePage } from "../components/Pages/DashboardHomePage/DashboardHomePage"; const DashboardPage = () => { return ( - + ); };