Changed to new Layout System
This commit is contained in:
17
spaces/error.vue
Normal file
17
spaces/error.vue
Normal 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>
|
||||
Reference in New Issue
Block a user