Skip to content

Commit

Permalink
Corrección visual en links del footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel-Palestino committed Oct 25, 2024
1 parent 070880e commit 77c1760
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const t = useTranslations(lang);
class="flex flex-col md:flex-row gap-8 border-t border-gray-200 pt-8 px-4"
>
<nav class="hidden md:block basis-1/3">
<a href={getRelativeLocaleUrl(lang)} class="text-lg font-semibold mb-2">{t('nav.home')}</a>
<a href={getRelativeLocaleUrl(lang, 'nosotros')} class="text-lg font-semibold mb-2">{t('nav.about')}</a>
<a href={getRelativeLocaleUrl(lang, 'servicios')} class="text-lg font-semibold mb-2">{t('nav.services')}</a>
<a href={getRelativeLocaleUrl(lang, 'tecnologia')} class="text-lg font-semibold mb-2">{t('nav.technology')}</a>
<a href={getRelativeLocaleUrl(lang)} class="text-lg font-semibold mb-2 block">{t('nav.home')}</a>
<a href={getRelativeLocaleUrl(lang, 'nosotros')} class="text-lg font-semibold mb-2 block">{t('nav.about')}</a>
<a href={getRelativeLocaleUrl(lang, 'servicios')} class="text-lg font-semibold mb-2 block">{t('nav.services')}</a>
<a href={getRelativeLocaleUrl(lang, 'tecnologia')} class="text-lg font-semibold mb-2 block">{t('nav.technology')}</a>
<!-- <a class="text-lg font-semibold mb-2">{t('nav.events')}</a> -->
</nav>

Expand Down

0 comments on commit 77c1760

Please sign in to comment.