This is wrong here.
$w(`#button8`).onClick((event)=>{
Don’t use the ` for elements as it needs to be like you have already used above that is now marked out.
$w('#button8').onClick((event)=>{
You use the ` when you are moving to another page through button click.
export function myaccountbutton_onclick(event) {
wixLocation.to(`/account/my-account`);