14 lines
319 B
Vue
14 lines
319 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<main
|
|
class="enderesque d-flex flex-column rounded-card gap-2 p-4 animate__animated animate__fadeInDown animate__delay-1s"
|
|
>
|
|
<Navigation />
|
|
<h3>Welcome!</h3>
|
|
<NuxtPage class="ender-card-body" />
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|