Time delay redirect to internal wix page not working

I am looking for a code to have people who land on my homepage redirect to an about us page after being on the homepage for a certain amount of time. I am currently using this code:
import wixLocation from ‘wix-location’; $w.onReady(function () { setTimeout(function () { // Redirect to home page wixLocation.to(“/”); }, 5000); // Wait for 5 seconds (5000 milliseconds) });

When I change the redirect from home page to another page it breaks.