feat(settings): screen setup

This commit is contained in:
2025-11-24 11:16:47 +01:00
parent a825c472b4
commit 11efbe7a38
9 changed files with 297 additions and 0 deletions

17
app/pages/settings.vue Normal file
View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
definePageMeta({
layout: false,
});
</script>
<template>
<NuxtLayout name="default">
<template #top>
<SettingsTopScreen />
</template>
<template #bottom>
<SettingsBottomScreen />
</template>
</NuxtLayout>
</template>