I would like to create a Pop Up Warning Using Velo

I am looking to Create a pop up that let’s people know they are leaving the site and then directed to the other website.
Anyone have any idea?
Someone posted this code, but it doesn’t work:

import wixLocation from ‘wix-location’;

export function hoverBox2_click(event, $w) {
//Add your code for this event here:
$w(‘#box1’).hide(“fade”,100);
$w(‘#hoverBox1’).hide(“fade”,500);
$w(‘#button2’).hide(“fade”,500);
setTimeout(function () { wixLocation.to (“/amazon”),500});
}