I have a simple web page running next.js, the page just returns the "Hello World" element and I would like it to redirect me to another URL (youtube) instead.
It is basically a redirect page when loading.
My simple page:
function Home() {
return <div>Hello World</div>
}
export default Home
I even tried the js window.location function, but to no avail