add map link 'nosotras' and remove some text
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user