Site home page

This commit is contained in:
2021-12-27 20:28:08 -06:00
parent 3740bb4140
commit 4c3e6373e2
4 changed files with 62 additions and 57 deletions

13
src/components/Input.vue Normal file
View File

@@ -0,0 +1,13 @@
<script setup>
</script>
<template>
<div>
<input type="file" id="treeFile" class="hidden">
<label for="treeFile" class="p-12 border border-blue-500 bg-blue-100/30 dark:bg-blue-900/20 border-dashed rounded-xl text-blue-400 text cursor-pointer block">
Drop a file here or click to select a file
</label>
</div>
</template>