Change structure

This commit is contained in:
René Preuß
2022-10-31 18:20:33 +01:00
parent fb90843b98
commit 1ff9c3de33
25 changed files with 70 additions and 1272 deletions

15
components/Card.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<div class="bg-white text-black dark:bg-base-700 dark:text-white rounded shadow mb-8">
<slot/>
</div>
</template>
<script>
export default {
name: "Card"
}
</script>
<style scoped>
</style>