[0d34a1]: / client / src / components / Header.jsx

Download this file

13 lines (12 with data), 322 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
function Header() {
return (
<>
<div className="mt-8 mx-28 text-4xl pb-4 flex justify-between rounded-xl">
Stress Detection System
<span className="text-xl"> ML Course Project </span>
</div>
<hr />
</>
);
}
export default Header;