MIF_E31221407_FE/layouts/landing-page.vue

11 lines
304 B
Vue

<template>
<NuxtUiContainer
class="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-800 flex flex-col">
<LandingHeader />
<div class="grow">
<slot />
</div>
<LandingFooter />
</NuxtUiContainer>
</template>