Changed to new Layout System

This commit is contained in:
2024-02-23 22:34:39 +01:00
parent 0d86e4c4f9
commit 3924fd79d2
10 changed files with 260 additions and 204 deletions

17
spaces/error.vue Normal file
View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import type { NuxtError } from '#app'
const props = defineProps({
error: Object as () => NuxtError
})
</script>
<template>
<div class="flex justify-center h-100 w-100">
<div class="mt-20">
<h1 class="text-5xl text-center mb-3">Da ist etwas schief gelaufen</h1>
<UButton to="/">Zurück</UButton>
</div>
</div>
</template>