<Meta />

このコンポーネントは、ルートモジュールの meta エクスポートによって作成されたすべての <meta> タグをレンダリングします。通常は app/root.tsx のように、HTML の <head> 内にレンダリングする必要があります。

app/root.tsx
import { Meta } from "@remix-run/react";
 
export default function Root() {
  return (
    <html>
      <head>
        <Meta />
      </head>
      <body></body>
    </html>
  );
}