Skip to content

Commit

Permalink
corrige rutas de enlaces en la barra de navegación
Browse files Browse the repository at this point in the history
  • Loading branch information
xtian7489 committed Jan 24, 2025
1 parent d8a68ac commit 0c61def
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/layout/navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,32 +21,32 @@ import logoUnesco from "../../assets/unesco.png";
<li
class={`${Astro.url.pathname === "/acercade" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="acercade">Acerca De</a>
<a href="/acercade">Acerca De</a>
</li>
<li
class={`${Astro.url.pathname === "/testimonios" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="testimonios">Testimonios</a>
<a href="/testimonios">Testimonios</a>
</li>
<li
class={`${Astro.url.pathname === "/datos" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="datos">Datos</a>
<a href="/datos">Datos</a>
</li>
<li
class={`${Astro.url.pathname === "/contacto" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="contacto">Contacto</a>
<a href="/contacto">Contacto</a>
</li>
<li
class={`${Astro.url.pathname === "/metodologias" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="metodologias">Metodologia</a>
<a href="/metodologias">Metodologia</a>
</li>
<li
class={`${Astro.url.pathname === "/faqs" ? "text-primary-900 font-semibold" : "text-gray-500"}`}
>
<a href="faqs">Faqs</a>
<a href="/faqs">Faqs</a>
</li>
</ul>
</div>
Expand Down

0 comments on commit 0c61def

Please sign in to comment.