- Hi, {accountName}!
-
+ Hi, {
+ accountName
+ ? accountName
+ : 'Admin'
+ }!
+
);
};
diff --git a/hotel-management/src/components/Nav/index.tsx b/hotel-management/src/components/Nav/index.tsx
index ff938ce..6c9b01a 100644
--- a/hotel-management/src/components/Nav/index.tsx
+++ b/hotel-management/src/components/Nav/index.tsx
@@ -7,7 +7,8 @@ import { BsHouseDoorFill } from 'react-icons/bs';
import { StyledNav, StyledNavLink } from './styled';
// Constants
-import { BOOKING, ROOM, USER } from '@src/constants/path';
+import {BOOKING, ROOM, SIGN_UP_ACCOUNT, USER} from '@src/constants/path';
+import {FaUserPlus} from "react-icons/fa6";
const Nav = () => {
return (
@@ -24,6 +25,10 @@ const Nav = () => {