Got something going

This commit is contained in:
2023-08-27 09:48:58 -05:00
parent e052db6e4b
commit 010ac088f0
13 changed files with 15595 additions and 1146 deletions

View File

@@ -0,0 +1,23 @@
<script setup lang="ts">
defineProps({
imgSrc: {
type: String,
required: true
},
link: {
type: String,
required: true
}
})
</script>
<template>
<div>
<a :href="link">
<img :src="imgSrc" class="h-14 mx-auto"/>
<div class="text-lg text-white text-center">
<slot></slot>
</div>
</a>
</div>
</template>