diff --git a/src/app/pages/Guide.tsx b/src/app/pages/Guide.tsx index b510b27d..02850b48 100644 --- a/src/app/pages/Guide.tsx +++ b/src/app/pages/Guide.tsx @@ -16,7 +16,7 @@ export function Guide({ id }: Props) { Minecraft Wiki Logo
-

This guide has moved to the Minecraft Wiki {Octicon.link_external}

+

This guide has moved to the Minecraft Wiki {Octicon.link_external}

diff --git a/src/app/pages/Guides.tsx b/src/app/pages/Guides.tsx index 3de0067d..1260dc9d 100644 --- a/src/app/pages/Guides.tsx +++ b/src/app/pages/Guides.tsx @@ -1,10 +1,15 @@ import { Footer, Octicon } from '../components/index.js' import config from '../Config.js' +import { useLocale } from '../contexts/Locale.jsx' +import { useTitle } from '../contexts/Title.jsx' interface Props { path?: string } export function Guides({}: Props) { + const { locale } = useLocale() + useTitle(locale('title.guides')) + const guides = config.legacyGuides return