add map link 'nosotras' and remove some text

This commit is contained in:
María
2025-09-19 13:40:22 +02:00
committed by María
parent da6a67626f
commit a40d2f5b14
3 changed files with 17 additions and 26 deletions

View File

@@ -26,15 +26,17 @@
'h-20.1 w-20.1 rounded-full overflow-hidden border-4 border-white': image.display === 'circle',
'h-fit w-full lg:w-auto': image.display === 'normal'
}">
<img
:src="`/img/${image.src}`"
:alt="image.alt"
class="w-full h-full"
:class="{
'object-cover': image.display === 'circle',
'object-contain': image.display === 'normal'
}"
/>
<NuxtLink :to="mapLink" target="_blank" rel="noopener noreferrer" class="hover:opacity-80 transition-opacity">
<img
:src="`/img/${image.src}`"
:alt="image.alt"
class="w-full h-full"
:class="{
'object-cover': image.display === 'circle',
'object-contain': image.display === 'normal'
}"
/>
</NuxtLink>
</div>
<div v-if="imageCTA" class="flex flex-col items-end">
<p v-if="imageCTA.description" class="text-lg-custom mt-2">{{ imageCTA.description }}</p>
@@ -114,6 +116,10 @@ export default {
type: Object,
default: null
},
mapLink: {
type: String,
default: '#'
},
imageCTA: {
type: Object,
default: null