15 lines
364 B
Vue
15 lines
364 B
Vue
<template>
|
|
<div class="min-h-screen max-w-screen">
|
|
<NavigationComponent />
|
|
<div class="mx-2 md:mx-4 lg:mx-6 xl:mx-7 my-6">
|
|
<slot />
|
|
</div>
|
|
<Footer class="bottom-0 w-full" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Footer from '../components/Footer.vue'
|
|
import NavigationComponent from '../components/NavigationComponent.vue';
|
|
</script>
|