Initial commit

This commit is contained in:
2025-04-07 12:59:20 +03:00
commit d47a21fcbf
47 changed files with 12696 additions and 0 deletions

10
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,10 @@
<template>
<AuthState v-slot="{ loggedIn }">
<Register v-if="!loggedIn" />
<template v-if="loggedIn">
<AppBar />
<slot />
<AppFooter />
</template>
</AuthState>
</template>