Skip to content

Commit 68932a9

Browse files
BackendExpertJehanKandyAnupa1998
committed
Update Dashboard.jsx
Co-Authored-By: JehanKandy <jehankandy@gmail.com> Co-Authored-By: Anupa Gamage <125038143+Anupa1998@users.noreply.github.com>
1 parent 867ff6b commit 68932a9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

client/src/components/Dashboard/Dashboard.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useEffect, useState } from 'react'
22
import { Link, useNavigate } from 'react-router-dom';
33
import secureLocalStorage from "react-secure-storage"
4+
import { BsChatLeftFill } from "react-icons/bs";
45

56
const Dashboard = () => {
67
const navigate = useNavigate()
@@ -16,7 +17,10 @@ const Dashboard = () => {
1617
if(RoleUser !== null && EmailUser !== null){
1718
return (
1819
<div className="bg-[url('https://wallpapercave.com/wp/wp3998740.png')] bg-cover bg-center py-8 px-12 min-h-screen">
19-
20+
<div className="">
21+
<BsChatLeftFill className='h-16 w-auto bg-green-500 p-4 rounded-xl text-green-800 shadow-md'/>
22+
<p className="text-bold pt-1">Online ChatApp</p>
23+
</div>
2024
</div>
2125
)
2226
}

0 commit comments

Comments
 (0)