Next.js: populate the head tag with custom tags
How to customize the `head` tag of your Next.js app
From any Next.js page component, you can add information to the page header.
This is handy when:
- you want to customize the page title
- you want to change a meta tag
How can you do so?
Inside every component you can import the Head
component from next/head
and include it in your component JSX output:
import Head from 'next/head'
const House = props => (
<div>
<Head>
<title>The page title</title>
</Head>
{/* the rest of the JSX */}
</div>
)
export default House
You can add any HTML tag you’d like to appear in the <head>
section of the page.
When mounting the component, Next.js will make sure the tags inside Head
are added to the heading of the page. Same when unmounting the component, Next.js will take care of removing those tags.
→ Download my free Next.js Handbook!
THE VALLEY OF CODE
THE WEB DEVELOPER's MANUAL
You might be interested in those things I do:
- Learn to code in THE VALLEY OF CODE, your your web development manual
- Find a ton of Web Development projects to learn modern tech stacks in practice in THE VALLEY OF CODE PRO
- I wrote 16 books for beginner software developers, DOWNLOAD THEM NOW
- Every year I organize a hands-on cohort course coding BOOTCAMP to teach you how to build a complex, modern Web Application in practice (next edition February-March-April-May 2024)
- Learn how to start a solopreneur business on the Internet with SOLO LAB (next edition in 2024)
- Find me on X