first commit

This commit is contained in:
2025-09-17 18:55:33 +02:00
commit 232cd49052
29 changed files with 4705 additions and 0 deletions

15
front/src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup>
import BooksBrowser from './BooksBrowser.vue'
import AppNavBar from './AppNavBar.vue'
</script>
<template>
<header>
<AppNavBar/>
</header>
<main class="section">
<BooksBrowser/>
</main>
</template>
<style scoped></style>