SEO

Use the Head component from @landrr/core:

import { Head } from "@landrr/core";

export default function Page() {
  return (
    <>
      <Head
        title="My page"
        description="Page description"
        ogType="website"
        twitterCard="summary_large_image"
      />
      <h1>Content</h1>
    </>
  );
}

Tags are collected during SSR and injected into <!--head-tags--> in index.html.