rename rank.pompy.dev -> list.pompy.dev
This commit is contained in:
parent
767c892109
commit
ca9817102f
17 changed files with 5 additions and 5 deletions
15
apps/list/error.vue
Normal file
15
apps/list/error.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<script setup lang="ts">
|
||||
import type { NuxtError } from "#app"
|
||||
|
||||
const props = defineProps({
|
||||
error: Object as () => NuxtError,
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex flex-col items-center">
|
||||
<h2 class="text-8xl font-black">{{ $props.error?.statusCode }}</h2>
|
||||
<p>{{ $props.error?.statusMessage }}</p>
|
||||
<NuxtLink href="/" class="underline">bring me home!</NuxtLink>
|
||||
</div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue