ButtonCTA amended and urls updated

This commit is contained in:
María
2025-10-16 13:27:34 +02:00
parent 0b44b2aa3b
commit 74c1234169
15 changed files with 64 additions and 50 deletions

View File

@@ -13,9 +13,9 @@
</div>
<div class="flex flex-col gap-4 items-center text-center">
<p class="text-center text-base-custom" v-html="description"></p>
<NuxtLink v-if="link" :to="link.url">
<p class="text-button hover:text-button-hover">{{ link.label }}</p>
</NuxtLink>
<ButtonCTA v-if="link" color="only-link" :href="link.url" size="lg">
{{ link.label }}
</ButtonCTA>
</div>
</div>
</div>
@@ -33,7 +33,7 @@ export default {
default: null,
},
link: {
type: String,
type: Object,
default: null
},
},