toby/resources/js/Shared/Layout/GuestLayout.vue
2022-07-08 12:50:49 +02:00

18 lines
386 B
Vue

<template>
<div class="relative flex flex-col justify-center py-12 min-h-screen bg-blumilk-25 sm:px-6 lg:px-8">
<slot />
<DeployInfo
:deploy-information="deployInformation"
class="absolute left-0 bottom-0 justify-end"
/>
</div>
</template>
<script setup>
import DeployInfo from '@/Shared/DeployInfo'
defineProps({
deployInformation: Object,
})
</script>