Ben Borgers

How to add things to the HTML head with React Static

April 7, 2021

React Static comes with a built-in Head component, which allows you to add content to the HTML <head> element. It's powered by React Helmet.

import { Head } from 'react-static'

export default () => {
	return (
		<div>
			<Head>
				<title>Here is the page title</title>
			</Head>

			<div>
				the page content
			</div>
		</div>
	)
}

More blog posts

Subscribe to my newsletter for a monthly round-up of new blog posts and projects Iā€™m working on!

Twitter ↗ RSS feed ↗