feat: add useMetatag hook to retrieve the metatag of the current entity
This merge request adds a useMetatag hook to retrieve the metatag object for the current entity type.
Example usage:
const { title } = useMetatag();
...
<Page title={title?.attributes.content}>
{...}
</Page>