diff --git a/apps/documentation/src/routes/documentation/tutorial/seo.mdx b/apps/documentation/src/routes/documentation/tutorial/seo.mdx index 6cf3c523..0a033f5d 100644 --- a/apps/documentation/src/routes/documentation/tutorial/seo.mdx +++ b/apps/documentation/src/routes/documentation/tutorial/seo.mdx @@ -81,17 +81,14 @@ export default function IndexPage({ ```diff // src/routes/pokemons/[pokemon].tsx import type { JSX } from 'react' --- import { TuonoProps } from "tuono"; -++ import { TuonoProps, Head } from "tuono"; +import { TuonoProps } from "tuono"; import PokemonView from "../../components/PokemonView"; export default function Pokemon({ data }: TuonoProps): JSX.Element { -- return ; ++ return ( ++ <> -++ -++ Pokemon: ${data?.name} -++ +++ Pokemon: ${data?.name} ++ ++ ++ )