Head
The @archibald/client package provides a set of components to work with document head tags.
Head
The Head component is used for working with title, meta and link tags in the document head. It supports the rendering of the tags both on the server and on the client.
import { Head } from '@archibald/client';
// you can use any document head element inside of the Head tag and it will be automatically rendered into the header.
<Head>
<title>Test</title>
<meta name="robots" content="NOINDEX, NOFOLLOW" />
</Head>;
Props
You can use all normal props of the respective HTMLElements