change buttons + github action

This commit is contained in:
Emily
2024-07-17 15:11:09 +02:00
parent 094e191900
commit 5300da90f2
4 changed files with 94 additions and 39 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts" setup>
const props = defineProps<{
action?: () => {},
link?: string,
target?: string
}>();
</script>
<template>
<NuxtLink @click="action?.()" :to="link" :target="target || ''"
class="poppins font-[500] px-10 py-[.3rem] bg-[#222A42] outline outline-[1px] outline-[#5680F8] rounded-xl">
<slot></slot>
</NuxtLink>
</template>