Pareto uses react-helmet-async for metadata management.
So you can use all the features available in the react-helmet-async library.
That's it!. The title tag will be automatically moved to the head tag during server-side rendering.
Sometimes you want to set some common meta tags between multiple routes.
You can define a shared-meta.tsx file and import it separately in client-entry.tsx and server-entry.tsx.
Do not use Helmet in streamed components, it will not take effect,
because streamed components are not rendered immediately.