add bun backend and add upload bitstream component

This commit is contained in:
2025-03-18 17:28:21 +08:00
parent 4980b84da6
commit d766e2ae6a
13 changed files with 178 additions and 17 deletions

View File

@@ -1,12 +1,18 @@
<template>
<main>
<div class="w-full h-full">
<header>
</header>
<main class="relative">
<div class="fixed left-0 top-0 z-50">
<Sidebar />
</div>
<div class="w-screen h-screen flex items-center justify-center">
<UploadCard />
</div>
</main>
</template>
<script setup lang="ts">
import UploadCard from '@/components/UploadCard.vue';
import Sidebar from '../components/Sidebar.vue'
</script>