You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
367 B
Vue

<template>
<div class="bg-white min-w-[800px] min-h-[80vh]">
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</div>
</template>
<script setup>
useHead({
titleTemplate: 'Michael Winter'
})
</script>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>