initial commit

This commit is contained in:
Zoe
2023-01-03 09:29:04 -06:00
commit 7851137d88
12889 changed files with 2557443 additions and 0 deletions

20
components/Technology.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div class="hover:scale-105 cursor-pointer duration-500 flex flex-col justify-center items-center text-center rounded shadow-xl border-2 border-gray-500 h-full w-full p-6">
<h2 class="text-lg text-gray-700">{{name}}</h2>
<p class="text-sm text-gray-600">{{description}}</p>
<a
class="text-sm text-violet-500 underline decoration-dotted underline-offset-2 cursor-pointer mt-3"
href={{documentation}}
target="_blank"
rel="noreferrer"
>
Documentation
</a>
</div>
</template>
<script lang="ts">
export default {
props: ['name', 'description', 'documentation']
}
</script>