From 449044eb7a3ca7f35fef6e8c0c72c55a745a534d Mon Sep 17 00:00:00 2001 From: Petropoulos Evangelos Date: Fri, 20 Jun 2025 19:39:13 +0300 Subject: [PATCH] fix naming --- .../homepage.tsx => DashboardHomePage/DashboardHomePage.tsx} | 4 +++- payment-iq/app/dashboard/page.tsx | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) rename payment-iq/app/components/pages/{homepage/homepage.tsx => DashboardHomePage/DashboardHomePage.tsx} (91%) 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 ( - + ); };