diff --git a/docs/docs/tutorial/part-2/index.mdx b/docs/docs/tutorial/part-2/index.mdx index bdd5fcbb43cdb..fabe47fecd06b 100644 --- a/docs/docs/tutorial/part-2/index.mdx +++ b/docs/docs/tutorial/part-2/index.mdx @@ -251,7 +251,7 @@ const AboutPage = () => { } // highlight-next-line -export const Head = () => About Me<title/> +export const Head = () => <title>About Me export default AboutPage ``` @@ -268,7 +268,7 @@ You can add any valid `` tags inside the function and they'll be added to ```js export const Head = () => ( <> - About Me<title/> + <title>About Me )