Second commit

This commit is contained in:
2026-04-20 20:30:42 +02:00
parent 9f2578f7d2
commit 254a645c25
1072 changed files with 4491 additions and 17 deletions

View File

@@ -1,6 +1,24 @@
<script setup lang="ts">
import Content from './components/viewer/content/Content.vue';
import StatusBar from './components/viewer/statusbar/StatusBar.vue';
import TopBar from './components/viewer/TopBar.vue';
</script>
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
<div class="viewer">
<TopBar></TopBar>
<Content></Content>
<StatusBar></StatusBar>
</div>
</template>
<style scoped>
.viewer {
display: flex;
flex-direction: column;
width: 100%;
height: 100vh;
}
</style>