Skip to content

Commit 20617d2

Browse files
[IMP] new name and remove parenthesis
1 parent 3c8f825 commit 20617d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ function renderPokemonIndex(pokemons: Array<Pokemon>): string {
2525
<meta charset="UTF-8">
2626
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2727
<meta name="viewport" content="width=device-width, initial-scale=1.0">
28-
<title>Pokédex</title>
28+
<title>PokeQuickDex</title>
2929
<link rel="stylesheet" href="css/styles.css">
3030
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5418523060607609"
3131
crossorigin="anonymous"></script>
3232
<link rel="canonical" href="https://pokequickdex.vercel.app" />
3333
<script defer src="/_vercel/insights/script.js"></script>
3434
</head>
3535
<body>
36-
<h1>Pokédex</h1>
36+
<h1>Poke Quick Dex</h1>
3737
<div class="search-filter-container">
3838
<input type="text" id="search-input" class="search-input" placeholder="Search Pokémon..." />
3939
<select id="type-select" class="type-select">
@@ -162,7 +162,7 @@ function renderPokemonIndex(pokemons: Array<Pokemon>): string {
162162
<html>
163163
${head(pokemon.name)}
164164
<body>
165-
<h1>${pokemon.name.charAt(0).toUpperCase() + pokemon.name.slice(1)} <span class="pokemon-id">(#${String(pokemon.id).padStart(4, '0')})</span></h1>
165+
<h1>${pokemon.name.charAt(0).toUpperCase() + pokemon.name.slice(1)} <span class="pokemon-id">#${String(pokemon.id).padStart(4, '0')}</span></h1>
166166
<h2 class="section-title">Pokédex Description</h2>
167167
<p class="description">${pokemon.pokedexDescription}</p>
168168
<div class="pokemon-container">

0 commit comments

Comments
 (0)