diff --git a/frontend/src/pages/dashboard.tsx b/frontend/src/pages/dashboard.tsx index 11915f0..4598a8a 100644 --- a/frontend/src/pages/dashboard.tsx +++ b/frontend/src/pages/dashboard.tsx @@ -10,6 +10,7 @@ import BaseIcon from '../components/BaseIcon'; import { getPageTitle } from '../config'; import Link from 'next/link'; import { useTranslation } from 'next-i18next'; +import TableOrders from '../components/TableOrders'; import { hasPermission } from '../helpers/userPermissions'; import { fetchWidgets } from '../stores/roles/rolesSlice'; @@ -137,6 +138,13 @@ const Dashboard = () => { > {''} + {/* Welcome message under page title */} + {currentUser?.first_name && ( +
+ Welcome to VRES, {currentUser.first_name}! +
+)} + {hasPermission(currentUser, 'CREATE_ROLES') && (