Head component does not change title
Answered
American Chinchilla posted this in #help-forum
American ChinchillaOP
code below
Answered by joulev
[use the metadata api](https://nextjs.org/docs/app/building-your-application/optimizing/metadata)
3 Replies
American ChinchillaOP
return (
<div className="...">
<Head>
<title>Choose server to manage</title>
</Head>
// content here
</div>
) its at app/servers/page.tsxAnswer
@joulev [use the metadata api](<https://nextjs.org/docs/app/building-your-application/optimizing/metadata>)
American ChinchillaOP
thanks works!