Added home page button
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Shahan Nedadahandeh 2022-09-04 10:34:08 -07:00
parent b62d811e11
commit 0c513d9698
Signed by: snedadah
GPG Key ID: 8638C7F917385B01
1 changed files with 6 additions and 3 deletions

View File

@ -12,7 +12,9 @@ export function Header() {
return ( return (
<> <>
<div className={styles.headerWrapper}> <div className={styles.headerWrapper}>
<h1>CS 2022</h1> <h1>
<Link href="/">CS 2022</Link>
</h1>
<button <button
onClick={(e) => { onClick={(e) => {
e.preventDefault(); e.preventDefault();
@ -20,7 +22,7 @@ export function Header() {
}} }}
className={styles.menuIcon} className={styles.menuIcon}
> >
<img src="/images/menuIcon.svg" width="50" height="50" /> <img src="/images/menuIcon.svg" width="50" draggable="false" />
</button> </button>
</div> </div>
@ -37,10 +39,11 @@ export function Header() {
}} }}
> >
<img <img
className={styles.arrowIcon}
src="/images/rightArrow.svg" src="/images/rightArrow.svg"
className={styles.arrowIcon}
width="50" width="50"
height="50" height="50"
draggable="false"
/> />
</button> </button>
</div> </div>