File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
client/src/components/Dashboard Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11import React , { useEffect , useState } from 'react'
22import { Link , useNavigate } from 'react-router-dom' ;
33import secureLocalStorage from "react-secure-storage"
4+ import { BsChatLeftFill } from "react-icons/bs" ;
45
56const 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 }
You can’t perform that action at this time.
0 commit comments