Skip to content

Commit

Permalink
Add the é to a bunch of places that needed it
Browse files Browse the repository at this point in the history
  • Loading branch information
AarCon committed Oct 12, 2023
1 parent 9e3a48d commit 1530882
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ const config = {
},
{ to: '/rom-hacking', label: 'ROM Hacking', position: 'left' },
{ to: '/blog', label: 'Blog', position: 'left' },
...(isDexEnabled ? [{ to: '/dex', label: 'Pokedex', position: 'left' }] : []),
...(isPokedexEnabled ? [{ to: POKEDEX_BASE_PATH, label: 'Pokedex', position: 'left' }] : []),
...(isDexEnabled ? [{ to: '/dex', label: 'Pokédex', position: 'left' }] : []),
...(isPokedexEnabled ? [{ to: POKEDEX_BASE_PATH, label: 'Pokédex', position: 'left' }] : []),
{
label: 'Discord',
href: 'https://discord.gg/luminescent',
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pokedex2/PokemonListPageContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const PokemonListPageContent = ({ pokemonList }) => {
<Container sx={{ flex: '1 1 auto', display: 'flex', flexDirection: 'column' }}>
<Box display="flex" flexDirection="column" flex="1 1 auto">
<Typography variant="h2" component="h1">
Pokemon
Pokémon
</Typography>

<Box display="flex" marginTop="16px">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pokedex2/PokemonSearchBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const PokemonSearchBox = ({ pokemonNames, pokemonId }) => {
</li>
);
}}
renderInput={(params) => <TextField {...params} label="Search Pokemon" />}
renderInput={(params) => <TextField {...params} label="Search Pokémon" />}
/>
);
};
2 changes: 1 addition & 1 deletion src/components/Pokedex2/PokemonSearchInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const PokemonSearchInput = ({ allPokemons, setPokemons }) => {
<TextField
id="pokemon-search-input"
type="search"
label="Search Pokemon"
label="Search Pokémon"
fullWidth={true}
value={debouncedText}
onChange={(e) => setDebouncedText(e.target.value)}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_dex.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function PokemonPage({ pokemon, pokemonList }) {
return (
<Layout
title={pokemon.name}
description="Pokemon Luminescent Version, A ROM Hack for Pokemon Brilliant Diamond and Shining Pearl"
description="Pokémon Luminescent Version, A ROM Hack for Pokémon Brilliant Diamond and Shining Pearl"
>
<PokemonPageContent pokemon={pokemon} pokemonNames={pokemonList} />
</Layout>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/_dexlist.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { PokemonListPageContent } from '../components/Pokedex2/PokemonListPageCo
const PokedexListPage = ({ pokemonList }) => {
return (
<Layout
title="Pokedex"
description="Pokemon Luminescent Version, A ROM Hack for Pokemon Brilliant Diamond and Shining Pearl"
title="Pokédex"
description="Pokémon Luminescent Version, A ROM Hack for Pokémon Brilliant Diamond and Shining Pearl"
>
<PokemonListPageContent pokemonList={pokemonList} />
</Layout>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dex.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function PokedexPage() {
return (
<Layout
title={siteConfig.title}
description="Pokemon Luminescent Version, A ROM Hack for Pokemon Brilliant Diamond and Shining Pearl"
description="Pokémon Luminescent Version, A ROM Hack for Pokémon Brilliant Diamond and Shining Pearl"
>
<PokedexFeatures />
</Layout>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Home() {
return (
<Layout
title={`${siteConfig.title}`}
description="Pokemon Luminescent Version, A ROM Hack for Pokemon Brilliant Diamond and Shining Pearl">
description="Pokémon Luminescent Version, A ROM Hack for Pokémon Brilliant Diamond and Shining Pearl">
<HomepageHeader />
<main>
<HomepageFeatures />
Expand Down

0 comments on commit 1530882

Please sign in to comment.