ComponentsPageTitleOn this pagePageTitleComponent used to set the <title> tag on the page.Propstitle = {string}Example with codeimport PageTitle from '@components/PageTitle';const MyComponent = () => { return ( <PageTitle title="My page" /> );};