diff --git a/src/content/reference/react-dom/components/title.md b/src/content/reference/react-dom/components/title.md
index 24b2aba2f..e3f4d84b3 100644
--- a/src/content/reference/react-dom/components/title.md
+++ b/src/content/reference/react-dom/components/title.md
@@ -5,17 +5,17 @@ canary: true
-React's extensions to `` are currently only available in React's canary and experimental channels. In stable releases of React `` works only as a [built-in browser HTML component](https://react.dev/reference/react-dom/components#all-html-components). Learn more about [React's release channels here](/community/versioning-policy#all-release-channels).
+As extensões do React para `` estão atualmente disponíveis apenas nos canais canary e experimental do React. Nas versões estáveis do React, `` funciona apenas como um [componente HTML embutido do navegador](https://react.dev/reference/react-dom/components#all-html-components). Saiba mais sobre [os canais de lançamento do React aqui](/community/versioning-policy#all-release-channels).
-The [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) lets you specify the title of the document.
+O [componente `` embutido do navegador](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) permite que você especifique o título do documento.
```js
-My Blog
+Meu Blog
```
@@ -24,45 +24,45 @@ The [built-in browser `
` component](https://developer.mozilla.org/en-US/d
---
-## Reference {/*reference*/}
+## Referência {/*reference*/}
### `` {/*title*/}
-To specify the title of the document, render the [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). You can render `` from any component and React will always place the corresponding DOM element in the document head.
+Para especificar o título do documento, renderize o [componente `` embutido do navegador](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). Você pode renderizar `` a partir de qualquer componente e o React sempre colocará o elemento DOM correspondente no cabeçalho do documento.
```js
-My Blog
+Meu Blog
```
-[See more examples below.](#usage)
+[Veja mais exemplos abaixo.](#usage)
#### Props {/*props*/}
-`` supports all [common element props.](/reference/react-dom/components/common#props)
+`` suporta todas as [props comuns de elementos.](/reference/react-dom/components/common#props)
-* `children`: `` accepts only text as a child. This text will become the title of the document. You can also pass your own components as long as they only render text.
+* `children`: `` aceita apenas texto como filho. Esse texto se tornará o título do documento. Você também pode passar seus próprios componentes, desde que eles renderizem apenas texto.
-#### Special rendering behavior {/*special-rendering-behavior*/}
+#### Comportamento especial de renderização {/*special-rendering-behavior*/}
-React will always place the DOM element corresponding to the `` component within the document’s ``, regardless of where in the React tree it is rendered. The `` is the only valid place for `` to exist within the DOM, yet it’s convenient and keeps things composable if a component representing a specific page can render its `` itself.
+O React sempre colocará o elemento DOM correspondente ao componente `` dentro do `` do documento, independentemente de onde na árvore do React ele seja renderizado. O `` é o único lugar válido para o `` existir dentro do DOM, mas é conveniente e mantém as coisas compostas se um componente representando uma página específica puder renderizar seu próprio ``.
-There are two exception to this:
-* If `` is within an `