We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c264b9 commit 287ada3Copy full SHA for 287ada3
2 files changed
Client/src/components/Layout/SideBar.tsx
@@ -65,7 +65,7 @@ const SideBar = () => {
65
<h1 className="text-[15px] font-medium text-black truncate">
66
{user?.name || user?.email}
67
</h1>
68
- <p className="text-xs text-black/60 truncate">
+ <p className="text-xs text-black/60 truncate ">
69
Role: {user?.role || "User"}
70
</p>
71
</div>
Client/src/pages/DashBoard.tsx
@@ -1,5 +1,11 @@
1
const DashBoard = () => {
2
- return <div>Welcome to dashboard</div>;
+ return (
3
+ <div className="p-5 flex flex-1 mt-2">
4
+ <h1 className="text-2xl font-semibold text-black/90 ">
5
+ 🤗 Your Workspaces
6
+ </h1>
7
+ </div>
8
+ );
9
};
10
11
export default DashBoard;
0 commit comments