At the top of your code put this line
import wixLocation from ‘wix-location’;
…
export function hoverBox1_click(event) {
wixLocation.to(“http://www.mydestination.com”);
}
and if it’s an internal page inside your Wix site, than you can do it like that:
import wixLocation from ‘wix-location’;
…
export function hoverBox1_click(event) {
wixLocation.to(“/home”);
}