Init commit

This commit is contained in:
Blossomi Shymae
2024-05-01 20:38:02 -05:00
commit 75bc1827e4
29 changed files with 11845 additions and 0 deletions

27
app.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<NuxtLayout>
<NuxtPage keepalive />
</NuxtLayout>
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(0.125rem);
}
.layout-enter-active,
.layout-leave-active {
transform: none;
transition: all 0.5s;
}
.layout-enter-from,
.layout-leave-to {
transform: translateX(-100%);
}
</style>