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

@@ -22,16 +22,12 @@
<h2 class="font-bold max-w-4xl">{{ title }}</h2>
<p class="text-2xl-custom max-w-4xl" v-html="subtitle"></p>
<div class="flex flex-col md:flex-row items-center justify-center gap-4">
<NuxtLink v-if="button" :to="button.link">
<ButtonCTA :color="button.color" class="uppercase mt-6">
{{ button.label }}
</ButtonCTA>
</NuxtLink>
<NuxtLink v-if="button2" :to="button2.link">
<ButtonCTA :color="button2.color" class="uppercase mt-6">
{{ button2.label }}
</ButtonCTA>
</NuxtLink>
<ButtonCTA v-if="button" :to="button.link" :color="button.color" class="uppercase mt-6">
{{ button.label }}
</ButtonCTA>
<ButtonCTA v-if="button2" :to="button2.link" :color="button2.color" class="uppercase mt-6">
{{ button2.label }}
</ButtonCTA>
</div>
</div>
</section>