diff --git a/src/components/DashboardLayout.tsx b/src/components/DashboardLayout.tsx index bb88ef9..aa12942 100644 --- a/src/components/DashboardLayout.tsx +++ b/src/components/DashboardLayout.tsx @@ -223,7 +223,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{!sidebarCollapsed && (
- Main Menu + {t('dashboard')}
@@ -353,7 +353,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{!sidebarCollapsed && (
- Listing + {t('myListings')}
@@ -394,7 +394,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{!sidebarCollapsed && (
- Account + {t('profile')}
@@ -434,7 +434,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => { className={`flex items-center space-x-3 px-7 py-2.5 rounded-r-full transition-all text-gray-700 hover:text-red-600 w-full border-l-4 border-transparent ${sidebarCollapsed ? 'justify-center px-2' : ''}`} > - {!sidebarCollapsed && Logout} + {!sidebarCollapsed && {t('signOut')}}
@@ -464,7 +464,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {