Currently, I have a basic web page built with next.js that simply displays the "Hello World" element. However, I am looking to create a redirect from this page to another URL (specifically YouTube).
This is essentially meant to serve as a redirection page upon loading.
Here is my current simple page setup:
function Home() {
return <div>Hello World</div>
}
export default Home
I have even attempted to use the JavaScript window.location function, but have had no success.