No changes made

This commit is contained in:
2025-04-16 12:47:04 -04:00
commit 1ed3b0c2d4
98 changed files with 8857 additions and 0 deletions

22
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<Toast />
<TopMenubar />
<div class="flex flex-row m-10 justify-around">
<router-view />
</div>
</template>
<script lang="ts" setup>
import { defineAsyncComponent } from 'vue'
const TopMenubar = defineAsyncComponent(() => import('./components/TopMenubar.vue'));
const Toast = defineAsyncComponent(() => import('primevue/toast'));
</script>
<style>
@import "tailwindcss";
html, body {
font-family: 'Nunito', sans-serif;
}
</style>