INIT: astro + vue + tailwind + first components

This commit is contained in:
prosety
2022-11-13 12:43:32 +01:00
commit 8d7ef80cc8
37 changed files with 11913 additions and 0 deletions

17
src/components/demo.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<section>
<div class="bg-slate-900 rounded-xl w-72 h-56">
<div class="p-3 flex justify-between w-20">
<div class="bg-green-400 h-4 w-4 r-1 rounded-full"></div>
<div class="bg-yellow-300 h-4 w-4 r-1 rounded-full"></div>
<div class="bg-red-600 h-4 w-4 r-1 rounded-full"></div>
</div>
<div class="text-white font-mono p-4 pt-0">
$: pegaz up nextcloud
</div>
</div>
<div class="bg-slate-400 rounded-2xl w-96 h-80">
<div class="bg-white"></div>
</div>
</section>
</template>