Files
artsite/app/app.vue
2024-06-21 16:01:15 +02:00

43 lines
757 B
Vue

<script setup lang="ts">
useSeoMeta({
title: 'Arthur Danjou - Maths lover',
description: 'A Nuxt template to build your full-stack application on the edge.'
})
</script>
<template>
<NuxtLoadingIndicator color="#14b8a6" />
<AppBackground />
<UContainer class="z-50 relative">
<AppHeader />
<NuxtPage class="mt-12" />
<AppFooter />
</UContainer>
</template>
<style>
body {
font-family: 'DM Sans', sans-serif;
@apply h-full w-full !text-gray-600 dark:!text-gray-400;
}
.sofia {
font-family: 'Sofia Sans', sans-serif;
}
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-leave-to {
opacity: 0;
transform: translateY(-5px);
}
.page-enter-from {
opacity: 0;
transform: translateY(5px);
}
</style>