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