We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf2358 commit 19521e3Copy full SHA for 19521e3
docs/docs/tutorial/part-2/index.mdx
@@ -251,7 +251,7 @@ const AboutPage = () => {
251
}
252
253
// highlight-next-line
254
-export const Head = () => <title>About Me<title/>
+export const Head = () => <title>About Me</title>
255
256
export default AboutPage
257
```
@@ -268,7 +268,7 @@ You can add any valid `<head>` tags inside the function and they'll be added to
268
```js
269
export const Head = () => (
270
<>
271
- <title>About Me<title/>
+ <title>About Me</title>
272
<meta name="description" content="Your description" />
273
</>
274
)
0 commit comments