Day18 #100DaysOfCode
Add a better link (styling), remove button I originally have 3 things First one is: <li> <Link href="/">All Notes</Link> </li> The button, however are: <li> <button onClick={() => signIn()}>Sign Up</button> </li> Either style the buttons, or use Link. Tried using Link for Sign Up But Link cannot be without href , get error. Googled - create link without href, says to use #, but it didnt work for me: https://stackoverflow.com/questions/20165590/make-a-clickable-link-with-onclick-but-without-href In same SO, this answer worked for me well: https://stackoverflow....