add skill buttons and more

This commit is contained in:
Zoe
2022-11-28 22:12:48 -06:00
parent 012091a865
commit 3b775e1eba
9 changed files with 220 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
<script>
export default {
props: ['iconSrc', 'name']
}
</script>
<template>
<button class="font-inter md:text-lg w-fit min-w-fit bg-zinc-800 py-1 px-2 rounded shadow flex items-center"><img
:src="iconSrc"
class="mr-2 w-5 h-5" />{{name}}</button>
</template>