unboundedpress/portfolio-nuxt/app.vue

25 lines
367 B
Vue
Raw Permalink Normal View History

2023-06-06 19:51:48 +02:00
<template>
2023-08-28 22:54:29 +02:00
<div class="bg-white min-w-[800px] min-h-[80vh]">
2023-06-06 19:51:48 +02:00
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</div>
</template>
2023-06-10 01:24:44 +02:00
2023-06-21 13:11:09 +02:00
<script setup>
useHead({
titleTemplate: 'Michael Winter'
})
</script>
2023-06-10 01:24:44 +02:00
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>