add links and target blank to hero sections

This commit is contained in:
2025-10-16 10:21:39 +02:00
parent 52477811f9
commit 0b44b2aa3b
8 changed files with 20 additions and 21 deletions

View File

@@ -1,8 +1,9 @@
<template>
<button type="button" class="flex items-center justify-center cursor-pointer text-button-base"
:disabled="disabled" :class="buttonClasses" @click="handleClick">
<slot></slot>
</button>
<a
class="flex items-center justify-center cursor-pointer text-button-base"
:disabled="disabled" :class="buttonClasses" :href="href" target="_blank" rel="noopener noreferrer" @click="handleClick">
<slot/>
</a>
</template>
<script>