Skip to content

Commit

Permalink
Merge pull request #31 from nini22P/dev
Browse files Browse the repository at this point in the history
Fix document url
  • Loading branch information
nini22P authored Aug 20, 2023
2 parents 20d4beb + 262abb9 commit 01ff7d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/[locale]/components/WebGALGames/WebGALGames.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const WebGALGames = () => {
</div>
<div className={'grid grid-cols-2 gap-4 px-4 max-w-fit mx-auto'}>
<Button>
<Link href={docsRedirect('/guide/showcase-your-game')} target={'_blank'}> {t('showCaseYourGame')}</Link>
<Link href={docsRedirect('/showcase-your-game')} target={'_blank'}> {t('showCaseYourGame')}</Link>
</Button>
<Button>
<Link href={`/${locale}/games/`}> {t('viewMoreGames')}</Link>
Expand Down
2 changes: 1 addition & 1 deletion app/[locale]/download/components/ReadFirst.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ReadFirst = () => {
return (
<div className={styles.card}>
<div className={'text-sm font-light space-y-1'}>
<p>{t('firstUse.part0')} <Link href={docsRedirect('/guide')} target={'_blank'}>{t('firstUse.part1')}</Link> {t('firstUse.part2')}</p>
<p>{t('firstUse.part0')} <Link href={docsRedirect('/')} target={'_blank'}>{t('firstUse.part1')}</Link> {t('firstUse.part2')}</p>
<p>{t('getHelp')}</p>
<p>{t('webGALScriptBasics.part0')} <Link href={'https://marketplace.visualstudio.com/items?itemName=c6h5-no2.webgal-script-basics'} target={'_blank'}>WebGAL Script Basics</Link> {t('webGALScriptBasics.part1')}</p>
</div>
Expand Down

0 comments on commit 01ff7d8

Please sign in to comment.