Files
harheimertc/app.vue
Torsten Schulz (local) 9889430109
Some checks failed
Code Analysis and Production Deploy / analyze (push) Failing after 6m5s
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Has been skipped
Overwork of design
2026-08-12 11:31:22 +02:00

17 lines
413 B
Vue
Executable File

<template>
<div class="h-screen flex flex-col overflow-hidden">
<Navigation />
<main class="flex-1 overflow-y-auto pt-20 pb-20 sm:pb-0">
<NuxtPage />
</main>
<Footer />
<ModalDialog />
</div>
</template>
<script setup>
import Navigation from '~/components/Navigation.vue'
import Footer from '~/components/Footer.vue'
import ModalDialog from '~/components/ModalDialog.vue'
</script>