feat(projects): scrolling projects

This commit is contained in:
2025-11-18 14:56:28 +01:00
parent 44d647696d
commit 8b492e1392
9 changed files with 131 additions and 17 deletions

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

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