Skip to content

Commit

Permalink
Merge pull request #347 from jonacruz89/feature/skip-husky-validation
Browse files Browse the repository at this point in the history
Resolver errores de format
  • Loading branch information
midudev authored Mar 8, 2024
2 parents a9e8b78 + e830631 commit 2feba75
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import Footer from "@/sections/Footer.astro"
description="Web Oficial de La Velada del Año IV, evento de boxeo entre streamers y creadores de contenido, organizado por Ibai Llanos"
title="La Velada del Año 4 - Página no encontrada"
>
<main>
<Error
error="404"
message="Página no encontrada"
contextMessage="¡Hola! Lo sentimos, pero no pudimos encontrar lo que buscabas. Verifica que la dirección URL sea correcta."
/>
</main>
<main>
<Error
error="404"
message="Página no encontrada"
contextMessage="¡Hola! Lo sentimos, pero no pudimos encontrar lo que buscabas. Verifica que la dirección URL sea correcta."
/>
</main>
<Footer />
</Layout>
8 changes: 5 additions & 3 deletions src/sections/SelectYourBoxer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ const listOfBoxers = BOXERS.map((boxer) => {
const countryName = COUNTRIES[country]?.name || ""
return { ...boxer, countryName }
})
const baseUrl = "#"
---

<section class="my-40">
Expand Down Expand Up @@ -47,7 +49,7 @@ const listOfBoxers = BOXERS.map((boxer) => {
<h4 class="text-lg">País</h4>
<p class="text-lg font-bold">México</p>
<a
href="#"
href={baseUrl}
class="mt-10 inline-block font-semibold text-accent transition hover:scale-110"
>
Ver combate
Expand All @@ -58,7 +60,7 @@ const listOfBoxers = BOXERS.map((boxer) => {
<h4 class="text-lg">Peso</h4>
<p class="text-lg font-bold">61 kg</p>
<a
href="#"
href={baseUrl}
class="mt-10 inline-block font-semibold text-accent transition hover:scale-110"
>
Ver perfil
Expand All @@ -72,7 +74,7 @@ const listOfBoxers = BOXERS.map((boxer) => {
<a
class="boxer-link group relative flex h-20 items-center justify-center"
title={`Visita la página del boxeador ${name}`}
href={"#"}
href={baseUrl}
data-id={id}
data-name={name}
data-country={country}
Expand Down

0 comments on commit 2feba75

Please sign in to comment.