As the title says, I can't set the title of my pages using <Head>. I wanted each page to have a different title, of course, but unfortunately didn't work in this case. I really need help, thanks.
import Head from 'next/head';
export default function Home() {
return (
<>
<Head>
<title>NetVerse</title>
</Head>
<h1>Hello World!</h1>
</>
);
}