frontend: add shadcn vue, replace custom css with tailwind

Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
Nicolas Froger 2024-07-22 02:24:43 +02:00
commit 227332e5d4
No known key found for this signature in database
19 changed files with 1480 additions and 289 deletions

View file

@ -0,0 +1,14 @@
<script setup>
import { Button } from '@/components/ui/button/index.js'
</script>
<template>
<div class="flex flex-col mt-20 w-full justify-center items-center gap-4">
<Button>test</Button>
<Button>test</Button>
<Button>test</Button>
</div>
</template>
<style scoped>
</style>