feat(ui): basic layout

This commit is contained in:
2025-12-07 21:27:23 +01:00
parent dc67c1c16a
commit 4e9b4a19b8
16 changed files with 198 additions and 187 deletions

11
app/pages/signin.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<UPage>
<span> Signin </span>
</UPage>
</template>
<script lang="ts" setup>
definePageMeta({
layout: 'unauthenticated',
});
</script>