mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 07:10:41 +00:00
Fix guides title
This commit is contained in:
@@ -16,7 +16,7 @@ export function Guide({ id }: Props) {
|
||||
<a class="tool-card minecraft-wiki" href={`https://minecraft.wiki/w/${guide?.link}`} target="_blank">
|
||||
<img src="https://minecraft.wiki/images/Wiki@2x.png" alt="Minecraft Wiki Logo" />
|
||||
<div>
|
||||
<h3>This guide has moved to the <em>Minecraft Wiki</em> {Octicon.link_external}</h3>
|
||||
<h3><span>This guide has moved to the <em>Minecraft Wiki</em></span> {Octicon.link_external}</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -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 <main>
|
||||
<div class="legacy-container guides">
|
||||
|
||||
Reference in New Issue
Block a user