Initial commit 🚀

This commit is contained in:
2022-02-28 20:07:01 +01:00
commit 08f616fe70
53 changed files with 4735 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<a
class="w-full h-full"
:href="url"
target="_blank"
>
<div class="w-full h-full p-2 border-2 rounded-lg border-white hover:border-gray-300 duration-500 cursor-pointer">
<h1 class="font-bold">
{{ title }}
</h1>
<h2 class="text-gray-700 text-justify dark:text-gray-200">
{{ t(description) }}
</h2>
</div>
</a>
</template>
<script setup lang="ts">
import { useI18n } from 'vue-i18n'
const { t } = useI18n()
defineProps({
title: {
type: String,
},
url: {
type: String,
},
description: {
type: String,
},
})
</script>