move to nuxt

This commit is contained in:
Hayden 2022-09-01 14:32:03 -08:00
parent 890eb55d27
commit 26ecb5a9d4
93 changed files with 5273 additions and 4749 deletions

5
frontend/layouts/404.vue Normal file
View file

@ -0,0 +1,5 @@
<template>
<main class="w-full min-h-screen bg-blue-100 grid place-items-center">
<slot></slot>
</main>
</template>

View file

@ -0,0 +1,10 @@
<script setup lang="ts"></script>
<template>
<div>
<AppToast />
<AppHeader />
<main class="p-8 dark:bg-gray-800 dark:text-white bg-white text-gray-800 min-h-screen">
<slot></slot>
</main>
</div>
</template>

View file

@ -0,0 +1,7 @@
<script setup lang="ts"></script>
<template>
<div>
<AppToast />
<slot />
</div>
</template>

View file

@ -0,0 +1,9 @@
<template>
<div>
<AppToast />
<AppHeader />
<main>
<slot></slot>
</main>
</div>
</template>