Components
Head
Add metadata and external resources to your document
The Head
component allows you to add metadata and external resources to your document. It can be used to import fonts and icon libraries. It works similarly to Next.js’s Head
component, which hoists the contents to the top of the HTML document.
Usage
Place the Head
component inside your document, typically near the top. You can include various HTML elements that you want to be added to the <head>
section of your page.
The Head
component doesn’t render any visible content.
It only affects the document’s <head>
section.