<Head /> - exta
Docs
Components
<Head />

<Head />

The <Head /> component allows you to manipulate the <head> of the HTML file.

React
import { Head } from "exta/components";
 
export default function () {
  return (
    <Head>
      <title>About me</title>
    </Head>
  );
}