amend lang links url

This commit is contained in:
María
2025-07-30 14:00:52 +02:00
committed by María
parent 240c4c6a95
commit 37b30382c8
5 changed files with 71 additions and 42 deletions

View File

@@ -2,51 +2,52 @@
<footer class="bg-background-dark text-white py-12 px-4 md:px-8 flex flex-col gap-8 rounded-t-3xl">
<div class="flex flex-col lg:flex-row gap-16 md:gap-12 lg:gap-16">
<div class="flex flex-col justify-between items-center md:items-start w-full md:w-1/3 lg:w-1/6">
<div class="flex flex-col gap-6 items-center md:items-start w-full md:w-1/3 lg:w-1/6">
<div class="mb-4">
<img src="/assets/svg/logo.svg" alt="Kit-ECO.SOCIAL Logo" class="h-15 w-auto">
</div>
<p class="mb-4 text-center md:text-start">Síguenos y entérate de los próximos eventos, novedades y recursos.</p>
<ul class="flex space-x-4">
<li class="h-12 lg:h-8 w-12 lg:w-8 rounded-full border border-white">
<a href="#" target="_blank" rel="noopener noreferrer" class="flex items-center justify-center h-full w-full">
<NuxtLink to="#" class="flex items-center justify-center h-full w-full">
<img src="/assets/svg/instagram.svg" alt="Instagram" class="w-4 h-4">
</a>
</NuxtLink>
</li>
<li class="h-12 lg:h-8 w-12 lg:w-8 rounded-full border border-white">
<a href="#" target="_blank" rel="noopener noreferrer" class="flex items-center justify-center h-full w-full">
<NuxtLink to="#" class="flex items-center justify-center h-full w-full">
<img src="/assets/svg/facebook.svg" alt="Facebook" class="w-4 h-4">
</a>
</NuxtLink>
</li>
<li class="h-12 lg:h-8 w-12 lg:w-8 rounded-full border border-white">
<a href="#" target="_blank" rel="noopener noreferrer" class="flex items-center justify-center h-full w-full">
<NuxtLink to="#" class="flex items-center justify-center h-full w-full">
<img src="/assets/svg/linkedin.svg" alt="LinkedIn" class="w-4 h-4">
</a>
</NuxtLink>
</li>
<li class="h-12 lg:h-8 w-12 lg:w-8 rounded-full border border-white">
<a href="#" target="_blank" rel="noopener noreferrer" class="flex items-center justify-center h-full w-full">
<NuxtLink to="#" class="flex items-center justify-center h-full w-full">
<img src="/assets/svg/x.svg" alt="X-Twitter" class="w-4 h-4">
</a>
</NuxtLink>
</li>
</ul>
<a href="mailto:info@kit-eco.social">info@kit-eco.social</a>
</div>
<div class="flex flex-col md:flex-row justify-between gap-16 md:gap-0 lg:gap-16 w-full lg:w-5/6">
<div class="flex md:w-2/3 lg:w-1/2">
<div class="flex flex-col w-1/2">
<h3 class="font-semibold text-lg mb-4">Herramientas</h3>
<h3 class="font-semibold text-lg mb-6">Herramientas</h3>
<ul class="space-y-3 text-left">
<li><a href="#" class="hover:underline">Consumo Cuidado</a></li>
<li><a href="#" class="hover:underline">Aula Virtual</a></li>
<li><a href="#" class="hover:underline">Iguales</a></li>
<li><a href="#" class="hover:underline">ODS</a></li>
<li><a href="#" class="hover:underline">Certifica-T</a></li>
<li><a href="#" class="hover:underline">Foro</a></li>
<li><NuxtLink :to="`/${langcode}/consumo-cuidado`" class="hover:font-semibold">Consumo Cuidado</NuxtLink></li>
<li><NuxtLink :to="`/${langcode}/aula-virtual`" class="hover:font-semibold">Aula Virtual</NuxtLink></li>
<li><NuxtLink :to="`/${langcode}/iguales`" class="hover:font-semibold">Iguales</NuxtLink></li>
<li><NuxtLink :to="`/${langcode}/ods`" class="hover:font-semibold">ODS</NuxtLink></li>
<li><NuxtLink :to="`/${langcode}/certifica-t`" class="hover:font-semibold">Certifica-T</NuxtLink></li>
<li><NuxtLink :to="`/${langcode}/foro`" class="hover:font-semibold">Foro</NuxtLink></li>
</ul>
</div>
<div class="flex flex-col w-1/2">
<h3 class="font-semibold text-lg mb-4">Enlaces rápidos</h3>
<h3 class="font-semibold text-lg mb-6">Enlaces rápidos</h3>
<ul class="space-y-3 text-left">
<li><a href="#" class="hover:underline">Nosotras</a></li>
<li><a href="#" class="hover:underline">Contactanos</a></li>
@@ -77,6 +78,9 @@
import { getCurrentYear } from "@/utils/dates.js";
export default {
computed: {
langcode() {
return this.$store.getters.langcode;
},
year() {
return getCurrentYear();
},